Spaces:
Build error
Build error
Upload gitignore
Browse files
gitignore
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python virtual environments
|
| 2 |
+
venv/
|
| 3 |
+
env/
|
| 4 |
+
.env
|
| 5 |
+
|
| 6 |
+
# Python cache files
|
| 7 |
+
__pycache__/
|
| 8 |
+
*.pyc
|
| 9 |
+
*.pyo
|
| 10 |
+
*.pyd
|
| 11 |
+
|
| 12 |
+
# Temporary audio files
|
| 13 |
+
*.mp3
|
| 14 |
+
*.wav
|
| 15 |
+
|
| 16 |
+
# Local IDE files
|
| 17 |
+
.idea/
|
| 18 |
+
.vscode/
|
| 19 |
+
|
| 20 |
+
# Logs and misc
|
| 21 |
+
*.log
|
| 22 |
+
*.DS_Store
|