- 新增皮肤包上传/列表/删除 API(基于 upload_key) - 构建时自动解压 ZIP 皮肤包应用到项目 - 配置和皮肤包迁移到 backend/data/ 目录,切分支不会丢失 - 旧式目录皮肤自动迁移为 ZIP 格式 - 前端皮肤包管理 UI(上传、删除、下拉选择) - .gitignore 排除运行时数据目录
36 lines
338 B
Plaintext
36 lines
338 B
Plaintext
# 环境变量(含密码)
|
|
.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
|
|
# 数据库
|
|
*.db
|
|
|
|
# 运行时数据(配置、皮肤包)
|
|
backend/data/
|
|
|
|
# 日志
|
|
logs/
|
|
|
|
# 服务器 PID
|
|
.server.pid
|
|
.watchdog.pid
|
|
|
|
# 前端
|
|
node_modules/
|
|
frontend/node_modules/
|
|
backend/static/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|