feat: add Docker support for automated deployment

This commit is contained in:
2026-02-28 16:07:38 +08:00
parent aed0e589f7
commit 2e6d8c28c4
7 changed files with 688 additions and 0 deletions

54
.dockerignore Normal file
View File

@@ -0,0 +1,54 @@
# Git
.git
.gitignore
# Spug
spug/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
*.egg-info/
.eggs/
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
backend/logs/
*.log
# Database
*.db
*.sqlite
# Docker
Dockerfile.backend
Dockerfile.frontend
docker-compose.yml
# Documentation
*.md
docs/
# Test
tests/
pytest_cache/