-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
51 lines (43 loc) · 845 Bytes
/
.gitignore
File metadata and controls
51 lines (43 loc) · 845 Bytes
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
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# AI assistants
.crush/
.cursor/
.aider/
.copilot/
# Python
__pycache__/
*.pyc
.venv/
# Build output
bin/
frontend/admin-ui/node_modules/
frontend/voice-ui/node_modules/
frontend/admin-ui/dist/
frontend/voice-ui/dist/
server/frontend/admin-ui/*
!server/frontend/admin-ui/.gitkeep
server/frontend/voice-ui/*
!server/frontend/voice-ui/.gitkeep
server/models/wakeword/*
!server/models/wakeword/.gitkeep
server/models/auxiliary/*
!server/models/auxiliary/.gitkeep
# Local config (use config.example.yaml as template)
config.yaml
# OS
.DS_Store
Thumbs.db
# Models (download with make download-model)
# Auxiliary models (mel-spectrogram, speech-embedding, VAD, etc)
models/auxiliary/*.onnx
# Test audio
test/
# Runtime data (admin store — ignore everything except seeds)
data/*
!data/seeds/
server/data/