首个可运行的版本
This commit is contained in:
+111
@@ -0,0 +1,111 @@
|
||||
# ============================================
|
||||
# 青叶 (QingYe) .gitignore
|
||||
# 技术栈: Python FastAPI + Vue 3 + Docker
|
||||
# ============================================
|
||||
|
||||
# ---------------------
|
||||
# 依赖目录
|
||||
# ---------------------
|
||||
node_modules/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
|
||||
# ---------------------
|
||||
# 构建产物
|
||||
# ---------------------
|
||||
dist/
|
||||
build/
|
||||
*.egg-info/
|
||||
*.egg
|
||||
|
||||
# ---------------------
|
||||
# 环境变量
|
||||
# ---------------------
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
.env.production
|
||||
|
||||
# ---------------------
|
||||
# Python 虚拟环境
|
||||
# ---------------------
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
.Python
|
||||
|
||||
# ---------------------
|
||||
# Python 工具
|
||||
# ---------------------
|
||||
*.pyc
|
||||
*.pyo
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
.pytest_cache/
|
||||
htmlcov/
|
||||
.coverage
|
||||
coverage/
|
||||
|
||||
# ---------------------
|
||||
# Node.js 工具
|
||||
# ---------------------
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# ---------------------
|
||||
# 前端产物
|
||||
# ---------------------
|
||||
frontend/dist/
|
||||
frontend/node_modules/
|
||||
|
||||
# ---------------------
|
||||
# 后端产物
|
||||
# ---------------------
|
||||
backend/dist/
|
||||
backend/uploads/
|
||||
|
||||
# ---------------------
|
||||
# Alembic 迁移(按需取消注释)
|
||||
# ---------------------
|
||||
# backend/alembic/versions/
|
||||
|
||||
# ---------------------
|
||||
# Docker 数据卷
|
||||
# ---------------------
|
||||
postgres_data/
|
||||
redis_data/
|
||||
|
||||
# ---------------------
|
||||
# IDE / 编辑器
|
||||
# ---------------------
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
|
||||
# ---------------------
|
||||
# 操作系统
|
||||
# ---------------------
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
ehthumbs.db
|
||||
|
||||
# ---------------------
|
||||
# 日志
|
||||
# ---------------------
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# ---------------------
|
||||
# Claude Code
|
||||
# ---------------------
|
||||
.claude/
|
||||
Reference in New Issue
Block a user