mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-04 08:25:26 +08:00
90 lines
895 B
Plaintext
90 lines
895 B
Plaintext
*.bak
|
|
config.json
|
|
.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
uvicorn.log
|
|
artifacts/
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Node.js / Frontend
|
|
node_modules/
|
|
webui/node_modules/
|
|
webui/dist/
|
|
.npm
|
|
.pnpm-store/
|
|
# 保留 webui/package-lock.json 用于 CI 缓存
|
|
# package-lock.json # 如果有根目录的可以忽略
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Build artifacts
|
|
*.tsbuildinfo
|
|
.cache/
|
|
.parcel-cache/
|
|
static/admin/
|
|
internal/webui/assets/admin/
|
|
|
|
# Go compiled binaries
|
|
ds2api
|
|
ds2api-tests
|
|
|
|
# Environment
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# Misc
|
|
*.pyc
|
|
*.pyo
|
|
.git/
|
|
Thumbs.db
|