fix(env): 修正示例环境变量配置

- 更新数据库连接信息为生产环境示例
- 修改调试模式默认值为 False
- 添加注释提示生产环境需修改数据库信息
This commit is contained in:
2026-02-28 17:24:20 +08:00
parent 4dd88ad294
commit 0395f31d24

View File

@@ -1,10 +1,11 @@
# 环境变量配置
# 数据库配置 (PostgreSQL)
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/hospital_performance
# 生产环境请修改为实际的数据库连接信息
DATABASE_URL=postgresql+asyncpg://postgresql:Jchl1528@192.168.110.252:15432/hospital_performance
# JWT 配置
SECRET_KEY=your-secret-key-change-in-production-min-32-characters
# 调试模式
DEBUG=True
DEBUG=False