29 lines
663 B
Plaintext
29 lines
663 B
Plaintext
# Django Settings
|
|
DJANGO_SECRET_KEY=your-secret-key-here
|
|
DJANGO_DEBUG=True
|
|
DJANGO_ALLOWED_HOSTS=*
|
|
|
|
# MySQL Database
|
|
DB_NAME=rtc_demo
|
|
DB_USER=root
|
|
DB_PASSWORD=your-password
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
|
|
# Redis
|
|
REDIS_URL=redis://127.0.0.1:6379/0
|
|
|
|
# Aliyun OSS
|
|
OSS_ACCESS_KEY_ID=your-access-key-id
|
|
OSS_ACCESS_KEY_SECRET=your-access-key-secret
|
|
OSS_ENDPOINT=oss-cn-hangzhou.aliyuncs.com
|
|
OSS_BUCKET_NAME=your-bucket-name
|
|
OSS_CUSTOM_DOMAIN=
|
|
|
|
# Volcengine Ark SDK / 火山引擎豆包 (Story Generation)
|
|
VOLCENGINE_API_KEY=your-volcengine-api-key
|
|
VOLCENGINE_MODEL_NAME=doubao-seed-1-6-lite-251015
|
|
|
|
# CORS (production only)
|
|
CORS_ALLOWED_ORIGINS=https://your-domain.com
|