22 lines
457 B
Bash
22 lines
457 B
Bash
# 数据库配置
|
||
DB_HOST=localhost
|
||
DB_PORT=3306
|
||
DB_USER=root
|
||
DB_PASSWORD=your_password
|
||
DB_ROOT_PASSWORD=your_root_password
|
||
DB_NAME=miniprogram
|
||
|
||
# AI 配置(阿里云 DashScope)
|
||
DASHSCOPE_API_KEY=sk-your-api-key
|
||
|
||
# 微信小程序配置(订阅消息用)
|
||
WECHAT_APPID=your_appid
|
||
WECHAT_SECRET=your_secret
|
||
WECHAT_ORDER_TEMPLATE_ID=your_template_id
|
||
|
||
# 服务器配置
|
||
PORT=3006
|
||
NODE_ENV=development
|
||
CORS_ORIGIN=*
|
||
BASE_URL=http://your_ip_or_domain:3006
|