首次提交:初始化项目代码

This commit is contained in:
sunct
2026-07-31 15:24:14 +08:00
commit 8d3c97bd01
73 changed files with 11720 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# 本地开发环境变量(覆盖 K8s 默认值)
# 使用前先把 docker-compose.infra.yml 跑起来: docker compose -f docker-compose.infra.yml up -d
# Auth Service
AUTH_PORT=8081
JWT_SECRET=cloudnest-secret-key
# 本地连接地址(docker-compose 暴露到宿主机)
MYSQL_DSN=root:sun900120@tcp(localhost:3306)/cloudnest?charset=utf8mb4&parseTime=True&loc=Local
REDIS_ADDR=localhost:6379
# File Service
FILE_PORT=8082
MINIO_ENDPOINT=localhost:9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin
MINIO_BUCKET=cloudnest-files
MINIO_USE_SSL=false