Files
dealerhub/.dockerignore

28 lines
445 B
Plaintext

# Local environments and generated dependencies
.git
.gitignore
**/.env
**/.venv
**/venv
**/__pycache__
**/*.py[cod]
**/.pytest_cache
frontend/node_modules
backend/.pytest_cache
# Runtime and local database state
backend/db.sqlite3
backend/staticfiles
backend/media
backend/*.log
# Frontend build output is produced by the Docker multi-stage builder
frontend/dist
backend/frontend_dist
# Editor and OS files
.vscode
.idea
.DS_Store
Thumbs.db