-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
150 lines (125 loc) · 2.25 KB
/
Copy path.gitignore
File metadata and controls
150 lines (125 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Node.js
node_modules/
# Build directories
build/
build_test/
dist/
whisper-cpp/build/
whisper-cpp-build-bak/
# whisper-cpp non-essential directories (only library headers + src needed)
whisper-cpp/examples/
whisper-cpp/bindings/
whisper-cpp/models/
whisper-cpp/samples/
whisper-cpp/tests/
# Models (too large for git)
models/
*.gguf
*.mlmodelc/
*.mlpackage/
# Keep the bin/models directory structure but ignore actual model files
!bin/models/
!bin/models/.gitkeep
bin/models/*.bin
bin/models/*.gguf
bin/models/*.pt
bin/models/*.pth
bin/models/**/*.pt
bin/models/**/*.pth
bin/models/**/*.bin
bin/models/**/*.mlmodelc
bin/models/**/*.mlpackage
bin/models/**/*.onnx
bin/models/**/*.onnx.data
bin/models/**/*.json
bin/models/**/*.safetensors
bin/models/**/*.jsonl
bin/models/**/*.yaml
bin/models/**/events.out.tfevents.*
# Compiled binaries
whisper-service-local
whisper-sip-client
# Database files
*.db
*.db-shm
*.db-wal
*.db.bak*
*.sqlite
*.sqlite3
# Temporary files
*.tmp
*.log
# macOS
.DS_Store
.AppleDouble
.LSOverride
# IDE files
.vscode/
.idea/
*.swp
*.swo
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
compile_commands.json
# Object files
*.o
*.obj
*.so
*.dylib
*.dll
*.a
*.lib
# Temporary download directory
/tmp/whisper-cpp-*
llama-cpp/
llama-cpp
moshi-rust/
moshi-rust
# Binaries and symbol files
bin/*
!bin/models/
!bin/models/.gitkeep
*.dSYM/
# Downloads and vendor archives
download/
# Local logs and temp
server_debug.log
tmp_coreml/
# Prebuilt Piper binary managed by build script
third_party/piper-prebuilt/
# Python virtual environments
venv/
venv-*/
__pycache__/
*.pyc
*.pyo
# Test data (WAV files can be large)
tests/data/
# WAV output artifacts from manual testing
*.wav
# Stage 7 diagnostic output (binary WAV files + logs, not for source control)
stage7_output/
stage7_v*/
# Backup files
*.old.json
whisper-cpp/test_wavs/
whisper-cpp/
whisper-cpp
bin/models/kokoro-german
# External dependencies (cloned/downloaded at install time, never committed)
third_party/onnxruntime/
third_party/onnxruntime
logs/
.zenflow/
# DB encryption key file (generated per-machine)
db_key.hex
bin/db_key.hex
# Embedding DB metadata (generated at runtime)
embeddings.meta
.install_version
# Moshi-RAG Rust build artifacts
moshi-rag/rust/target/
.build_version