| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Git
- .git
- .gitignore
- .gitattributes
- # Docker
- Dockerfile
- Dockerfile.base
- docker/
- .dockerignore
- # IDE
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- # Logs
- logs/
- *.log
- gunicorn_log/
- # Python
- __pycache__/
- *.pyc
- *.pyo
- *.egg-info/
- .eggs/
- *.egg
- # Virtual env (should not be in image)
- venv/
- .venv/
- # OS
- .DS_Store
- Thumbs.db
- # Docker build artifacts
- *.tar
- *.tar.gz
- # Env files
- .env
- .env.*
- !.env.example
- # Test files
- tests/
- test_*.py
- *_test.py
- # CI/CD
- .github/
- .gitlab-ci.yml
- # Documentation
- *.md
- LICENSE
- # Temporary files
- tmp/
- temp/
- *.tmp
|