17 lines
570 B
Bash
17 lines
570 B
Bash
# ============================================
|
|
# 青叶 (QingYe) - 环境变量配置
|
|
# 复制此文件为 .env 并根据实际情况修改
|
|
# ============================================
|
|
|
|
# 后端
|
|
DATABASE_URL=postgresql+asyncpg://qingye:qingye_secret@postgres:5432/qingye
|
|
REDIS_URL=redis://redis:6379/0
|
|
JWT_SECRET_KEY=qingye-jwt-secret-change-in-production
|
|
JWT_REFRESH_SECRET_KEY=qingye-refresh-secret-change-in-production
|
|
CORS_ORIGINS=http://localhost:5173
|
|
ADMIN_PASSWORD=admin123
|
|
|
|
# 前端
|
|
VITE_API_BASE_URL=http://localhost:8000
|
|
VITE_WS_BASE_URL=ws://localhost:8000
|