This commit is contained in:
109
backend/.dockerignore
Normal file
109
backend/.dockerignore
Normal file
@@ -0,0 +1,109 @@
|
||||
# Python bytecode
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Django specific
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
media/
|
||||
staticfiles/
|
||||
|
||||
# Development files
|
||||
.git/
|
||||
.gitignore
|
||||
README.md
|
||||
docs/
|
||||
*.md
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# CI/CD
|
||||
.drone.yml
|
||||
.github/
|
||||
Dockerfile.dev
|
||||
docker-compose*.yml
|
||||
|
||||
# Testing
|
||||
pytest.ini
|
||||
.pytest_cache/
|
||||
test_*.py
|
||||
*_test.py
|
||||
tests/
|
||||
|
||||
# Migrations (включаем только для разработки)
|
||||
# migrations/
|
||||
|
||||
# Static files (собираются при сборке)
|
||||
static/
|
||||
storage/
|
||||
|
||||
# Backup files
|
||||
*.backup
|
||||
*.bak
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Frontend files (не нужны в backend контейнере)
|
||||
frontend/
|
||||
node_modules/
|
||||
package*.json
|
||||
*.js.map
|
||||
|
||||
# Development scripts
|
||||
scripts/
|
||||
Makefile
|
||||
Reference in New Issue
Block a user