纳入 FastAPI 后端、Vue 管理端、MCP 桥接与文档;通过 .gitignore 排除本地数据库与构建产物。 Co-authored-by: Cursor <cursoragent@cursor.com>
74 lines
859 B
Plaintext
74 lines
859 B
Plaintext
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Python tooling
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# SQLite / local data
|
|
ai_test.db
|
|
data.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# SSH scripts (keep directory placeholder only)
|
|
data/ssh-scripts/*
|
|
!data/ssh-scripts/.gitkeep
|
|
|
|
# Environment & secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!**/.env.example
|
|
|
|
# IDE / editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Cursor / local agent tooling (not part of app source)
|
|
.cursor/
|
|
.serena/
|
|
|
|
# Project runtime logs
|
|
.run_logs/
|
|
*.log
|
|
|
|
# Frontend (Vue + Vite)
|
|
frontend-admin/node_modules/
|
|
frontend-admin/dist/
|
|
frontend-admin/.vite/
|
|
frontend-admin/.cache/
|
|
frontend-admin/coverage/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|