CI/CD build notifications
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-11-02 06:33:45 +09:00
parent d5f1809f5a
commit 01532e860a
10 changed files with 1104 additions and 42 deletions

109
backend/.dockerignore Normal file
View 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