chore: 初始化项目骨架结构

- 创建前端 Vue3 项目目录结构(components、views、router、stores 等)
- 创建后端 Go 项目目录结构(cmd、internal、pkg 等分层架构)
- 创建部署配置目录(docker、k8s)
- 创建文档目录
- 添加 .gitignore 忽略规则
- 添加 Makefile 构建脚本
- 更新 README.md 项目说明文档
- 每个目录添加 .gitkeep 文件说明目录用途
This commit is contained in:
2026-07-14 14:34:10 +08:00
parent 8b46d5c403
commit 1bd5921fd4
33 changed files with 413 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
# 配置管理模块
存放配置加载相关代码:
- config.go: 配置加载,读取 YAML 配置文件,支持环境变量覆盖