52 lines
639 B
Plaintext
52 lines
639 B
Plaintext
# Binaries
|
|
certs/
|
|
go-speech
|
|
models/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Cache directory
|
|
cache/
|
|
|
|
# SSL certificates (можно добавить в репозиторий для разработки, но обычно не стоит)
|
|
# certs/*.crt
|
|
# certs/*.key
|
|
|
|
# Models (обычно большие файлы, не должны быть в репозитории)
|
|
models/*.onnx
|
|
models/*.onnx.json
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
|