Desmond-Dong commited on
Commit
944b84f
·
1 Parent(s): 4c3306f

Update app

Browse files
Files changed (2) hide show
  1. .gitattributes +4 -0
  2. .gitignore +76 -3
.gitattributes ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ reachy_mini_ha_voice/wakewords/**/*.tflite filter=lfs diff=lfs merge=lfs -text
2
+ reachy_mini_ha_voice/sounds/**/*.flac filter=lfs diff=lfs merge=lfs -text
3
+ "reachy_mini_ha_voice/wakewords/**/*.tflite filter=lfs diff=lfs merge=lfs -text
4
+ reachy_mini_ha_voice/sounds/**/*.flac" filter=lfs diff=lfs merge=lfs -text
.gitignore CHANGED
@@ -1,3 +1,76 @@
1
- __pycache__/
2
- *.egg-info/
3
- build/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ pip-wheel-metadata/
20
+ share/python-wheels/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+ MANIFEST
25
+
26
+ # Virtual Environment
27
+ .venv/
28
+ venv/
29
+ ENV/
30
+ env/
31
+
32
+ # IDE
33
+ .vscode/
34
+ .idea/
35
+ *.swp
36
+ *.swo
37
+ .claude/*
38
+ .serena/*
39
+ .spec-workflow/
40
+ .playwright-mcp/
41
+ *~
42
+
43
+ # Configuration
44
+ config.json
45
+ .env
46
+ *.log
47
+
48
+ # Cache
49
+ .cache/
50
+ *.cache
51
+ .DS_Store
52
+
53
+ # Testing
54
+ .pytest_cache/
55
+ .coverage
56
+ htmlcov/
57
+ .tox/
58
+
59
+ # Audio (exclude package bundled files)
60
+ *.wav
61
+ *.mp3
62
+ # *.flac - bundled in package
63
+ !reachy_mini_ha_voice/sounds/*.flac
64
+
65
+ # Models (exclude package bundled files)
66
+ models/
67
+ # *.tflite - bundled in package
68
+ !reachy_mini_ha_voice/wakewords/*.tflite
69
+ !reachy_mini_ha_voice/wakewords/**/*.tflite
70
+ *.onnx
71
+
72
+ # SDK Reference (local development only)
73
+ reachy_mini/
74
+ reachy_mini_conversation_app/
75
+ linux-voice-assistant/
76
+ reachy-mini-desktop-app/