mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-11 19:57:41 +08:00
51 lines
491 B
Plaintext
51 lines
491 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv
|
|
venv
|
|
ENV
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Node
|
|
webui/node_modules
|
|
webui/.vite
|
|
|
|
# Build artifacts (前端构建产物在 Docker 中重新生成)
|
|
static/admin
|
|
|
|
# 配置和敏感文件
|
|
.env
|
|
.env.*
|
|
config.json
|
|
|
|
# 日志和临时文件
|
|
*.log
|
|
logs/
|
|
tmp/
|
|
temp/
|
|
|
|
# 测试
|
|
tests/
|
|
*.test.py
|
|
|
|
# 文档和截图
|
|
*.md
|
|
截图/
|
|
docs/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
CLAUDE*.md
|