14 lines
234 B
Plaintext
14 lines
234 B
Plaintext
# ===== MongoDB =====
|
|
MONGO_DSN=mongodb://127.0.0.1:27017
|
|
MONGO_DB=app
|
|
|
|
# ===== 应用 =====
|
|
APP_NAME=fastapi-template
|
|
APP_ENV=dev
|
|
APP_DEBUG=true
|
|
APP_HOST=0.0.0.0
|
|
APP_PORT=8000
|
|
|
|
# 跨域,逗号分隔;* 仅调试用
|
|
CORS_ORIGINS=*
|