mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-02 07:25:26 +08:00
72 lines
702 B
Plaintext
72 lines
702 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/*
|
|
!dist/docker-input/
|
|
!dist/docker-input/*.tar.gz
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# 虚拟环境
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# 环境配置(通过 docker-compose 挂载或环境变量传递)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
config.json
|
|
|
|
# 开发工具
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 测试
|
|
tests/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Node.js / WebUI 开发依赖
|
|
node_modules/
|
|
webui/node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 文档
|
|
*.md
|
|
!README*.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
.releaserc.json
|
|
|
|
# 其他
|
|
.DS_Store
|
|
Thumbs.db
|