10 lines
327 B
Plaintext
10 lines
327 B
Plaintext
# 测试环境变量文件
|
|
FLASK_ENV=development
|
|
SECRET_KEY=test-secret-key-for-development
|
|
DATABASE_URL=sqlite:///test.db
|
|
LLM_API_URL=https://api.deepseek.com/v1
|
|
LLM_API_KEY=sk-test-api-key-for-development
|
|
WX_APPID=test-wx-appid
|
|
WX_SECRET=test-wx-secret
|
|
CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
|
|
LOG_LEVEL=DEBUG |