Files
gongxue-base/.gitignore
陈浩 78676a124a feat: 恭学教育基地管理系统初始提交
- 后端: NestJS 11 + TypeORM + JWT认证 + SQLite/MySQL
- 前端: React 19 + Ant Design 6 + Vite 8 + ECharts
- 功能模块: 数据面板、学生管理、宿舍管理、入住管理、费用录入、账单管理、教室管理、押金管理、操作日志、账号管理
- 支持Docker一键部署
2026-06-06 17:26:10 +08:00

41 lines
453 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.

# 依赖
node_modules/
# 构建产物
dist/
build/
# 环境变量(包含密码等敏感信息)
.env
.env.local
.env.production
# 数据库文件
*.db
*.sqlite
# 上传文件合同PDF等敏感文件不入版本库和部署包
uploads/
backend/uploads/
# 日志
logs/
*.log
# 编辑器 / IDE
.vscode/
.idea/
.qoder/
# 部署包 / 压缩包
*.zip
*.tar.gz
# 参考资料(非源码)
*.xls
*.xlsx
# 系统文件
.DS_Store
Thumbs.db