Files
cultivation-world-simulator/.dockerignore
MarkYangkp c981aff863 feat: 添加 Docker 一键部署支持,包括后端和前端 Dockerfile、docker-compose 配置及 Nginx 配置 (#112)
* feat: 添加 Docker 支持,包括后端和前端 Dockerfile、docker-compose 配置及 Nginx 配置

* feat: 添加 .dockerignore 文件,更新 Dockerfile 和 docker-compose 配置以支持数据持久化保存
2026-02-01 12:55:39 +08:00

41 lines
353 B
Plaintext

# 忽略不需要的文件
.git
.gitignore
node_modules
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
.env
.env.local
.DS_Store
Thumbs.db
# 开发文件
README.md
ROADMAP.md
CONTRIBUTING.md
.github/
.vscode/
.idea/
*.md
# 构建产物
web/dist/
web/node_modules/
dist/
build/
# 日志
*.log
logs/
# 测试
tests/
pytest_cache/
.coverage
htmlcov/