Expand .dockerignore with standard entries
This commit is contained in:
parent
bd0dc0478f
commit
6e704da86b
@ -1,11 +1,49 @@
|
|||||||
.git/
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
.venv/
|
.venv/
|
||||||
venv/
|
venv/
|
||||||
|
*.egg-info/
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
|
# Tests
|
||||||
|
backend/tests/
|
||||||
|
|
||||||
|
# Environment & secrets
|
||||||
.env
|
.env
|
||||||
|
*.env.local
|
||||||
|
|
||||||
|
# Databases
|
||||||
|
*.db
|
||||||
|
*.sqlite3
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
logs/
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Git
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
|
||||||
|
# Frontend
|
||||||
frontend/node_modules/
|
frontend/node_modules/
|
||||||
frontend/dist/
|
frontend/dist/
|
||||||
backend/__pycache__/
|
|
||||||
backend/**/__pycache__/
|
# Docker
|
||||||
backend/*.pyc
|
docker-compose.yml
|
||||||
backend/test.db
|
.dockerignore
|
||||||
backend/tests/
|
|
||||||
|
# Docs
|
||||||
|
*.md
|
||||||
|
|
||||||
|
# Dev & build scripts
|
||||||
|
run_dev.py
|
||||||
|
build_push.sh
|
||||||
|
start.sh
|
||||||
|
test_api.sh
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user