Files
2026Technology-Competition/.gitignore
T

43 lines
724 B
Plaintext

# ---- 环境与密钥 ----
.env
.env.*
# ---- 运行时数据 ----
data/
output/
# ---- Python 构建产物 ----
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
# ---- 测试缓存 ----
.pytest_cache/
.coverage
htmlcov/
# ---- 虚拟环境 ----
.venv/
venv/
# ---- 工具内部操作产物(不入库) ----
conversations/
.aura/
# ---- IDE / 编辑器 ----
.vscode/
.idea/
# ---- AI 工具本地配置(不入库)----
.opencode/
# ---- 前端构建(依赖不入库;打包产物 src/genesis/server/static/chat.js 入库)----
frontend/node_modules/
frontend/*.log
# ---- 前端 dev 产物(Vite dev 入口 / 构建输出均不入库)----
frontend/index.html
frontend/dist/
frontend/.vite-verify/