Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| MANIFEST | |
| # Virtual Environment | |
| venv/ | |
| env/ | |
| ENV/ | |
| .venv/ | |
| # Environment variables | |
| .env | |
| .env.local | |
| .env.production | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| .spyderproject | |
| .spyproject | |
| # OS | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Generated audio files (for testing) | |
| *.mp3 | |
| *.wav | |
| *.opus | |
| *.aac | |
| *.flac | |
| *.pcm | |
| test_output.* | |
| output.* | |
| hello.* | |
| speech.* | |
| # Logs | |
| *.log | |
| logs/ | |
| .pytest_cache/ | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| .tmp/ | |
| # Coverage reports | |
| htmlcov/ | |
| .coverage | |
| .coverage.* | |
| coverage.xml | |
| *.cover | |
| .hypothesis/ | |
| # Documentation builds | |
| docs/_build/ | |
| site/ | |
| # Package builds | |
| *.tar.gz | |
| *.whl | |
| dist/ | |
| build/ | |
| # MyPy | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # pyenv | |
| .python-version | |
| # pipenv | |
| Pipfile.lock | |
| # PEP 582 | |
| __pypackages__/ | |
| # Celery | |
| celerybeat-schedule | |
| celerybeat.pid | |
| # SageMath parsed files | |
| *.sage.py | |
| # Rope project settings | |
| .ropeproject | |
| # mkdocs documentation | |
| /site | |
| # Pyre type checker | |
| .pyre/ | |
| # Additional exclusions for GitHub | |
| # API Keys and Secrets | |
| config.json | |
| secrets.json | |
| .secrets | |
| api_keys.txt | |
| # Database files | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| # Backup files | |
| *.bak | |
| *.backup | |
| *~ | |
| # Node.js (if using any JS tools) | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # Docker | |
| .dockerignore | |
| Dockerfile.dev | |
| docker-compose.override.yml | |
| # Local configuration | |
| local_settings.py | |
| local_config.py |