24 lines
568 B
Plaintext
24 lines
568 B
Plaintext
# 环境变量配置示例
|
|
# 复制此文件为 .env 并修改为你的实际配置
|
|
|
|
# Coze API 配置
|
|
COZE_API_TOKEN=your_coze_api_token_here
|
|
COZE_DEFAULT_WORKFLOW_ID=your_default_workflow_id_here
|
|
|
|
# Feishu API 配置
|
|
FEISHU_APP_ID=your_feishu_app_id_here
|
|
FEISHU_APP_SECRET=your_feishu_app_secret_here
|
|
|
|
# Coze OAuth 配置
|
|
COZE_CLIENT_ID=your_coze_client_id_here
|
|
COZE_CLIENT_SECRET=your_coze_client_secret_here
|
|
|
|
# 数据库配置
|
|
DATABASE_URL=file:./dev.db
|
|
|
|
# 其他配置
|
|
TOKEN_REFRESH_SCHEDULER_ENABLED=true
|
|
NUXT_PUBLIC_API_BASE=
|
|
|
|
# Server 配置
|
|
NUXT_DEV_PORT=8080 |