Initial Commit

This commit is contained in:
2021-04-21 19:29:14 -07:00
commit fd3a6d87c4
19 changed files with 1794 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
all: action.go config.go audio.go logging.go main.go plugins.go
go build
install: trident trident.example.toml deepspeech.pbmm deepspeech.scorer
rm -rf /opt/trident/
mkdir -p /opt/trident/
install -Dm755 trident /opt/trident/trident
cp model.pbmm /opt/trident/
cp model.scorer /opt/trident/
cp trident.example.toml /opt/trident/trident.toml
cp -r plugins /opt/trident/
.PHONY: all install