BladeSzaSza Claude commited on
Commit
96aeabf
·
1 Parent(s): 290d5ce

Add comprehensive .gitignore file and remove cached Python bytecode

Browse files

- Add standard Python .gitignore with comprehensive patterns
- Include AI/ML specific ignores (models, caches, datasets)
- Add DigiPal-specific patterns (assets/, backups/, logs/, *.db)
- Remove tracked __pycache__ directories and .pyc files
- Ignore development tools (.claude/, .kiro/), environment files, and temporary files
- Include patterns for common IDEs, OS-specific files, and build artifacts

This ensures a clean repository with only source code tracked.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <[email protected]>

.gitignore ADDED
@@ -0,0 +1,306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .venv
125
+ env/
126
+ venv/
127
+ ENV/
128
+ env.bak/
129
+ venv.bak/
130
+
131
+ # Spyder project settings
132
+ .spyderproject
133
+ .spyproject
134
+
135
+ # Rope project settings
136
+ .ropeproject
137
+
138
+ # mkdocs documentation
139
+ /site
140
+
141
+ # mypy
142
+ .mypy_cache/
143
+ .dmypy.json
144
+ dmypy.json
145
+
146
+ # Pyre type checker
147
+ .pyre/
148
+
149
+ # pytype static type analyzer
150
+ .pytype/
151
+
152
+ # Cython debug symbols
153
+ cython_debug/
154
+
155
+ # PyCharm
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
+ # be added to the global gitignore or merged into this project gitignore. For a PyCharm
158
+ # project, it is not recommended to check the JetBrains specific gitignore file into
159
+ # version control. More details at https://github.com/github/gitignore/issues/3076
160
+ .idea/
161
+
162
+ # VS Code
163
+ .vscode/
164
+
165
+ # Sublime Text
166
+ *.sublime-project
167
+ *.sublime-workspace
168
+
169
+ # Vim
170
+ *.swp
171
+ *.swo
172
+ *~
173
+
174
+ # Emacs
175
+ *~
176
+ \#*\#
177
+ /.emacs.desktop
178
+ /.emacs.desktop.lock
179
+ *.elc
180
+ auto-save-list
181
+ tramp
182
+ .\#*
183
+
184
+ # macOS
185
+ .DS_Store
186
+ .AppleDouble
187
+ .LSOverride
188
+
189
+ # Windows
190
+ Thumbs.db
191
+ Thumbs.db:encryptable
192
+ ehthumbs.db
193
+ ehthumbs_vista.db
194
+ *.stackdump
195
+ [Dd]esktop.ini
196
+ $RECYCLE.BIN/
197
+ *.cab
198
+ *.msi
199
+ *.msix
200
+ *.msm
201
+ *.msp
202
+ *.lnk
203
+
204
+ # Linux
205
+ *~
206
+
207
+ # =============================================================================
208
+ # PROJECT SPECIFIC IGNORES
209
+ # =============================================================================
210
+
211
+ # DigiPal Application Data
212
+ assets/
213
+ backups/
214
+ logs/
215
+ *.db
216
+ *.sqlite
217
+ *.sqlite3
218
+
219
+ # AI Model Caches and Downloads
220
+ models/
221
+ model_cache/
222
+ .cache/
223
+ huggingface_cache/
224
+ transformers_cache/
225
+
226
+ # Large model files
227
+ *.bin
228
+ *.safetensors
229
+ *.onnx
230
+ *.pt
231
+ *.pth
232
+ *.h5
233
+
234
+ # Audio/Media files (if generated during development)
235
+ *.wav
236
+ *.mp3
237
+ *.mp4
238
+ *.avi
239
+ *.mov
240
+
241
+ # Image files (if generated during development)
242
+ *.png
243
+ *.jpg
244
+ *.jpeg
245
+ *.gif
246
+ *.bmp
247
+ *.tiff
248
+
249
+ # Backup files
250
+ *.backup
251
+ *.bak
252
+ *.gz
253
+
254
+ # Temporary files
255
+ temp/
256
+ tmp/
257
+ .tmp/
258
+
259
+ # Development tools
260
+ .claude/
261
+ .kiro/
262
+
263
+ # Environment and secrets
264
+ .env.local
265
+ .env.development.local
266
+ .env.test.local
267
+ .env.production.local
268
+ secrets/
269
+ .secrets
270
+
271
+ # HuggingFace specific
272
+ .huggingface/
273
+ hf_cache/
274
+
275
+ # Gradio specific
276
+ gradio_cached_examples/
277
+ flagged/
278
+
279
+ # DigiPal specific database and storage
280
+ digipal.db
281
+ digipal_*.db
282
+ *_digipal.db
283
+ test_*.db
284
+
285
+ # Session and authentication cache
286
+ session_cache/
287
+ auth_cache/
288
+
289
+ # Performance monitoring logs
290
+ performance_logs/
291
+ metrics/
292
+
293
+ # Error reports
294
+ crash_reports/
295
+ error_dumps/
296
+
297
+ # Development artifacts
298
+ .dev/
299
+ dev_*
300
+ debug_*
301
+ test_output/
302
+
303
+ # Local configuration overrides
304
+ local_config.py
305
+ config_local.py
306
+ local_settings.py
__pycache__/config.cpython-312.pyc DELETED
Binary file (14.3 kB)
 
digipal/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (159 Bytes)
 
digipal/ai/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (631 Bytes)
 
digipal/ai/__pycache__/communication.cpython-312.pyc DELETED
Binary file (34.3 kB)
 
digipal/ai/__pycache__/graceful_degradation.cpython-312.pyc DELETED
Binary file (22 kB)
 
digipal/ai/__pycache__/language_model.cpython-312.pyc DELETED
Binary file (21.7 kB)
 
digipal/ai/__pycache__/speech_processor.cpython-312.pyc DELETED
Binary file (20.5 kB)
 
digipal/auth/__pycache__/__init__.cpython-312.pyc DELETED
Binary file (617 Bytes)
 
digipal/auth/__pycache__/auth_manager.cpython-312.pyc DELETED
Binary file (15 kB)
 
digipal/auth/__pycache__/models.cpython-312.pyc DELETED
Binary file (7.35 kB)
 
digipal/auth/__pycache__/session_manager.cpython-312.pyc DELETED
Binary file (16.8 kB)