File size: 479 Bytes
55e88bd |
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 |
# Ignore large static files to reduce build context
static/*.mp3
static/*.wav
static/audio/*.mp3
static/audio/*.wav
# Development files
.git/
.vscode/
.idea/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
.env
venv/
.venv/
# Testing and documentation
.pytest_cache/
htmlcov/
.coverage
.nyc_output
*.log
.DS_Store
# Temporary files
*.tmp
*.swp
*~
.#*
# Local development
session_history/
tmp/
# Keep essential structure but ignore content
!static/.gitkeep
!static/audio/.gitkeep |