OK
This commit is contained in:
66
.dockerignore
Normal file
66
.dockerignore
Normal file
@@ -0,0 +1,66 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Virtual environment
|
||||
venv/
|
||||
env/
|
||||
.env.local
|
||||
.env.development
|
||||
.env.production
|
||||
|
||||
# Python cache
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Documentation
|
||||
*.md
|
||||
docs/
|
||||
|
||||
# Test files
|
||||
tests/
|
||||
.pytest_cache/
|
||||
|
||||
# Coverage
|
||||
.coverage
|
||||
htmlcov/
|
||||
|
||||
# Node modules (for frontend)
|
||||
frontend/node_modules/
|
||||
frontend/.npm
|
||||
frontend/.next/
|
||||
frontend/out/
|
||||
frontend/dist/
|
||||
|
||||
# Uploads (will be mounted as volume)
|
||||
uploads/*
|
||||
!uploads/.gitkeep
|
||||
|
||||
# Docker
|
||||
Dockerfile*
|
||||
docker-compose*
|
||||
.dockerignore
|
||||
|
||||
# Database
|
||||
*.db
|
||||
*.sqlite3
|
||||
Reference in New Issue
Block a user