19 lines
475 B
Plaintext
19 lines
475 B
Plaintext
|
|
# 数据库配置
|
||
|
|
DATABASE_URL=sqlite:///./data/alert_platform.db
|
||
|
|
|
||
|
|
# 阿里云 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_URL_PREFIX=https://your-bucket-name.oss-cn-hangzhou.aliyuncs.com
|
||
|
|
|
||
|
|
# 应用配置
|
||
|
|
APP_HOST=0.0.0.0
|
||
|
|
APP_PORT=8000
|
||
|
|
DEBUG=true
|
||
|
|
|
||
|
|
# 大模型配置(可选)
|
||
|
|
AI_MODEL_ENDPOINT=http://localhost:8001
|
||
|
|
AI_MODEL_API_KEY=your_api_key
|