66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
# Creative Studio Backend Environment Configuration
|
|
# 复制此文件为 .env 并填入实际值
|
|
|
|
# ============================================
|
|
# 应用配置
|
|
# ============================================
|
|
APP_NAME=Creative Studio
|
|
APP_VERSION=1.0.0
|
|
DEBUG=True
|
|
ENVIRONMENT=development
|
|
|
|
# 服务器配置
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
|
|
# ============================================
|
|
# GLM API 配置
|
|
# ============================================
|
|
# 获取 API Key: https://open.bigmodel.cn/usercenter/apikeys
|
|
ZAI_API_KEY=your_api_key_here
|
|
ZAI_MODEL=glm-4.7
|
|
# 可选模型: glm-4-flash, glm-4-plus, glm-4-0520
|
|
|
|
# ============================================
|
|
# 数据库配置
|
|
# ============================================
|
|
# MongoDB
|
|
MONGODB_URL=mongodb://localhost:27017
|
|
MONGODB_DATABASE=creative_studio
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# ============================================
|
|
# 安全配置
|
|
# ============================================
|
|
SECRET_KEY=your-super-secret-key-change-this-in-production
|
|
ALGORITHM=HS256
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=60
|
|
REFRESH_TOKEN_EXPIRE_DAYS=7
|
|
|
|
# ============================================
|
|
# 文件存储配置
|
|
# ============================================
|
|
# 本地存储路径
|
|
STORAGE_PATH=./storage
|
|
# 最大文件大小 (MB)
|
|
MAX_FILE_SIZE=100
|
|
|
|
# ============================================
|
|
# Celery 配置
|
|
# ============================================
|
|
CELERY_BROKER_URL=redis://localhost:6379/1
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/2
|
|
|
|
# ============================================
|
|
# CORS 配置
|
|
# ============================================
|
|
ALLOWED_ORIGINS=http://localhost:5173,http://localhost:3000
|
|
|
|
# ============================================
|
|
# 日志配置
|
|
# ============================================
|
|
LOG_LEVEL=INFO
|
|
LOG_FILE=./logs/app.log
|