Some checks failed
CodeQL / Analyze (go) (push) Successful in 6m28s
Docker Image / build-docker (push) Failing after 13m26s
Lint and Testing / lint (push) Successful in 11m17s
Lint and Testing / test (push) Successful in 11m17s
Lint and Testing / golangci (push) Successful in 2m40s
45 lines
483 B
Plaintext
45 lines
483 B
Plaintext
# Go build artifacts
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
go.work
|
|
|
|
# Binaries and native libs (local build)
|
|
/bin/
|
|
bin/
|
|
/lib/
|
|
lib/
|
|
|
|
# Runtime data (never commit)
|
|
config.yaml
|
|
.env
|
|
.env.*
|
|
cache/
|
|
|
|
# Packaged releases
|
|
dist/
|
|
*.tar.gz
|
|
|
|
# Downloaded models and ONNX weights
|
|
models/**/*.bin
|
|
models/**/*.onnx
|
|
models/**/*.model
|
|
models/*.bin
|
|
models/*.onnx
|
|
models/*.model
|
|
|
|
# whisper.cpp submodule and its build tree
|
|
third_party/
|
|
|
|
# IDE and OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|