uchill/backend/.dockerignore

67 lines
777 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
*.egg
# Virtual Environment
venv/
env/
ENV/
.venv/
# IDE
.vscode/
.idea/
*.swp
*.swo
# Database
*.sqlite3
db.sqlite3
# Media files (собираются в volume)
media/
# Static files (collectstatic при старте)
staticfiles/
# Environment
.env
.env.*
!.env.example
# Logs
*.log
logs/
# Tests и dev-инструменты (не нужны в образе)
.pytest_cache/
.coverage
htmlcov/
coverage.xml
conftest.py
pytest.ini
**/tests/
integration_tests/
create_test_users.py
update_plans.py
scripts/
# Документация
*.md
!README.md
# Git
.git/
.gitignore
# Docker
Dockerfile
.dockerignore
docker-compose*.yml