Spaces:
Sleeping
Sleeping
| # ========================================== | |
| # Backend .dockerignore | |
| # ========================================== | |
| # Environment files (SECURITY - Never include in image) | |
| .env | |
| .env.* | |
| !.env.example | |
| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| .venv/ | |
| # IDE files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| .hypothesis/ | |
| # Logs | |
| logs/ | |
| *.log | |
| # Database files | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| # Git | |
| .git/ | |
| .gitignore | |
| .gitattributes | |
| # Documentation (not needed in runtime) | |
| *.md | |
| docs/ | |
| # CI/CD | |
| .github/ | |
| .gitlab-ci.yml | |
| # Development scripts | |
| scripts/ | |
| test_*.py | |
| # Backups | |
| *_backup/ | |
| *.bak | |
| *.backup | |
| # Temporary files | |
| *.tmp | |
| *.temp | |
| .DS_Store | |
| Thumbs.db | |