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
+50
View File
@@ -0,0 +1,50 @@
# XINFRA .gitignore
# Go
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
/go.sum
/vendor/
# Node.js
node_modules/
dist/
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
logs/
# Temp files
tmp/
temp/
# Build output
build/
bin/
# Coverage
coverage/
*.cover
*.coverprofile
# Docker
docker-compose.override.yml
# Kubernetes secrets (local dev)
*-secret.yaml