Spaces:
Runtime error
Runtime error
| # ============================================ | |
| # Docker Ignore File | |
| # Exclude unnecessary files from Docker build context | |
| # ============================================ | |
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| # Virtual Environments | |
| env/ | |
| venv/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| .venv/ | |
| # IDEs | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Git | |
| .git/ | |
| .gitignore | |
| .gitattributes | |
| # Documentation (not needed in container) | |
| *.md | |
| !README.md | |
| ARCHITECTURE.md | |
| DEPLOYMENT.md | |
| FIX_OOM_RENDER.md | |
| INDEX.md | |
| QUICKSTART.md | |
| RENDER_QUICKSTART.md | |
| TESTING_GUIDE.md | |
| PROJECT_STRUCTURE.txt | |
| PROJECT_SUMMARY.md | |
| # Database (use external PostgreSQL) | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| app/database/*.db | |
| # Uploads (use external storage in production) | |
| app/static/uploads/wordclouds/* | |
| app/static/uploads/*.csv | |
| !app/static/uploads/.gitkeep | |
| # Logs | |
| *.log | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| # Render specific | |
| Procfile | |
| # Environment files (secrets should be in HF Settings) | |
| .env | |
| .env.* | |
| # Temporary files | |
| *.tmp | |
| tmp/ | |
| temp/ | |