🎨 优化模型配置 && 新增apikey功能 && 完善通用接口

This commit is contained in:
2026-03-03 17:13:24 +08:00
parent 2714e63d2a
commit 7dae1a6e2b
46 changed files with 3063 additions and 278 deletions

49
.dockerignore Normal file
View File

@@ -0,0 +1,49 @@
# .dockerignore
# 忽略不需要打包到镜像的文件
# Git
.git
.gitignore
.gitattributes
# IDE
.vscode
.idea
*.swp
*.swo
*~
# 日志和临时文件
*.log
log/
logs/
tmp/
temp/
# 数据文件
data/
uploads/
*.db
*.sqlite
# Node modules (会在构建时重新安装)
web/node_modules/
web/dist/
# Go
server/server
server/*.exe
server/*.test
server/*.out
# 文档
*.md
docs/
# 配置文件(保留 config.docker.yaml
server/config.yaml
config.yaml
# 其他
.DS_Store
Thumbs.db