13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
# Django 配置
|
|
DEBUG=True
|
|
SECRET_KEY=your-secret-key-here-change-in-production
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# 数据库配置
|
|
DATABASE_URL=sqlite:///db.sqlite3
|
|
# 生产环境使用:
|
|
# DATABASE_URL=postgresql://user:pass@localhost:5432/meeting_room
|
|
|
|
# API 配置
|
|
API_BASE_URL=http://localhost:8000
|