| # 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 |