infra: Docker Compose 开发环境(PostgreSQL + Redis)
- docker-compose.dev.yml: PostgreSQL 17 + Redis 7 服务编排 - init.sql: auth 模块表结构 + 默认角色 + 超级管理员 - redis.conf: 开发环境 Redis 配置 - dev-setup.sh: 一键启动开发环境脚本 - .gitignore: 项目全局忽略规则 Made-with: Cursor
This commit is contained in:
55
.gitignore
vendored
Normal file
55
.gitignore
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
# ============================================================
|
||||
# EchoChat 项目全局 .gitignore
|
||||
# ============================================================
|
||||
|
||||
# --- OS ---
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# --- IDE ---
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# --- Go ---
|
||||
backend/go-service/tmp/
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
*.test
|
||||
*.out
|
||||
*.prof
|
||||
|
||||
# --- Node.js ---
|
||||
node_modules/
|
||||
dist/
|
||||
.nuxt/
|
||||
.output/
|
||||
|
||||
# --- 环境配置 ---
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
*.local
|
||||
|
||||
# --- 日志 ---
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# --- Docker 数据卷(本地持久化目录) ---
|
||||
deploy/data/
|
||||
|
||||
# --- 编译产物 ---
|
||||
build/
|
||||
*.tmp
|
||||
|
||||
# --- 测试覆盖率 ---
|
||||
coverage/
|
||||
*.coverprofile
|
||||
Reference in New Issue
Block a user