# ============================================ # ColaFlow 开发环境配置 # Copy this file to .env and update with your values # ============================================ # ============================================ # PostgreSQL 配置 # ============================================ POSTGRES_DB=colaflow POSTGRES_USER=colaflow POSTGRES_PASSWORD=colaflow_dev_password POSTGRES_PORT=5432 # ============================================ # Redis 配置 # ============================================ REDIS_PASSWORD=colaflow_redis_password REDIS_PORT=6379 # ============================================ # 后端配置 # ============================================ BACKEND_PORT=5000 ASPNETCORE_ENVIRONMENT=Development JWT_SECRET_KEY=ColaFlow-Development-Secret-Key-Change-This-In-Production-32-Chars-Long! JWT_ISSUER=ColaFlow JWT_AUDIENCE=ColaFlow.API # ============================================ # 前端配置 # ============================================ FRONTEND_PORT=3000 NEXT_PUBLIC_API_URL=http://localhost:5000 NEXT_PUBLIC_WS_URL=ws://localhost:5000/hubs/project NEXT_PUBLIC_SIGNALR_HUB_URL=http://localhost:5000/hubs/notifications # ============================================ # 开发工具(可选) # ============================================ # Uncomment to enable pgAdmin and Redis Commander # COMPOSE_PROFILES=tools # PGADMIN_PORT=5050 # REDIS_COMMANDER_PORT=8081