Files
sundynix-site/.gitignore
T
Blizzard 5abc705eae feat: 官网 + 管理端 + Gin/GORM 后端首个完整版本
- web/: 产品官网(Hero 事件流终端、功能矩阵、架构、快速开始、下载、博客 + Markdown 详情页),青瓷绿双主题
- admin/: 内容管理(JWT 登录、文章分页/搜索/CRUD、草稿与发布),embed 挂 /admin
- server/: Gin + GORM,MySQL(DSN 走 .env,SQLite 兜底);规范落地:sundynix_ 表前缀、字符串雪花主键、snake_case 列名、统一响应信封、公共分页参数
- 双 SPA embed 单二进制部署,make build 一键出包

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-17 11:03:31 +08:00

19 lines
359 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.
# 构建产物
bin/
web/dist/
admin/dist/
# embed 的前端产物:只保留占位 index.htmlmake build 会重新生成
server/internal/webfs/dist/*
!server/internal/webfs/dist/index.html
server/internal/webfs/admin_dist/*
!server/internal/webfs/admin_dist/index.html
# 本地数据库
*.db
# 本地环境配置(含数据库凭据)
.env
.DS_Store