Files
lunar-mini/.gitignore
T
gouki 63f92501a1 fix(server): 管理后台源码入库,修正 .gitignore 误忽略
- server/web 之前被 web/ 忽略规则误伤,从未提交到仓库,导致 CI 部署包缺失后台静态资源
- 锚定根目录 /web/、/wishing-tree-pages/ 规则,仅忽略构建产物 node_modules/dist
2026-08-09 00:10:05 +00:00

93 lines
998 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 环境配置
.env.local
.env.*.local
# 密钥和证书
secrets/
*.key
*.pem
*.p12
*.mobileprovision
# 依赖
node_modules/
mini/node_modules/
# 构建输出
dist/
build/
*.min.js
*.min.wxss
# 小程序 CI
ci-artifacts/
mini/ci-artifacts/
# 编辑器
.idea/
.vscode/
*.swp
*.swo
*~
# 系统文件
.DS_Store
Thumbs.db
# 日志
*.log
logs/
# 临时文件
tmp/
temp/
.ci-tmp/
# Go
server/bin/
server/tmp/
server/vendor/
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
# 前端构建产物与依赖(注意:server/web 是管理后台源码,必须入库)
server/public/build/
server/public/hot
server/web/node_modules/
server/web/dist/
# web 版万年历(独立项目,不属于本仓库;前缀 / 锚定根目录,避免误伤 server/web
/web/
/wishing-tree-pages/
# 数据库
*.db
*.sqlite
*.sqlite3
# 上传文件
uploads/
storage/uploads/
# 备份
*.bak
*.backup
# 压缩包
*.zip
*.tar.gz
*.rar
# 微信开发者工具
.idea/
*.sublime-*
# 本地开发
local/
.local/