fastapi-crud-api/.gitignore
root 67d8c6bf30 feat: add FastAPI example project with CRUD API
- Add FastAPI application with health check and item CRUD endpoints
- Add Pydantic models for request/response validation
- Add pytest test suite with 5 passing tests
- Add project documentation and run script

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-07 08:25:34 +08:00

43 lines
401 B
Plaintext

# 系统文件
.DS_Store
Thumbs.db
# 编辑器
.idea/
.vscode/
*.swp
*.swo
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
*.egg
.venv/
# 环境变量
.env
.env.local
.env.*.local
# 日志
*.log
logs/
# Agent 指令文件(由系统生成)
AGENTS.md
CLAUDE.md
GEMINI.md
QWEN.md
# Agent 技能目录(软链接或副本)
.agents/
.claude/
.codex/
.gemini/
.qwen/