Files
012-kaopeilian/.gitignore
111 998211c483 feat: 初始化考培练系统项目
- 从服务器拉取完整代码
- 按框架规范整理项目结构
- 配置 Drone CI 测试环境部署
- 包含后端(FastAPI)、前端(Vue3)、管理端

技术栈: Vue3 + TypeScript + FastAPI + MySQL
2026-01-24 19:33:28 +08:00

72 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ================================
# AgentWD 项目 .gitignore
# ================================
# ----------------
# 环境配置(敏感)
# ----------------
.env
.env.local
.env.*.local
.env.production
.env.staging
# ----------------
# 依赖目录
# ----------------
node_modules/
.pnpm-store/
__pycache__/
*.pyc
.venv/
venv/
# ----------------
# 构建产物
# ----------------
dist/
build/
.output/
*.egg-info/
# ----------------
# IDE 配置
# ----------------
.vscode/
.idea/
*.swp
*.swo
.DS_Store
# ----------------
# 日志文件
# ----------------
logs/
*.log
npm-debug.log*
pnpm-debug.log*
# ----------------
# 测试覆盖率
# ----------------
coverage/
.nyc_output/
# ----------------
# n8n 敏感信息
# ----------------
n8n-workflows/*-credentials.json
n8n-workflows/credentials.json
# ----------------
# 历史备份(.history插件
# ----------------
.history/
# ----------------
# 临时文件
# ----------------
*.tmp
*.temp
.cache/