1 changed files with 20 additions and 19 deletions
@ -1,23 +1,24 @@ |
|||
# 数据库配置 |
|||
DB_HOST=mysql |
|||
# 微信小程序配置 |
|||
WECHAT_APPID=wx3da6ea0adf91cf0d |
|||
WECHAT_APPSECRET=78fd81bce5a2968a8e7c607ae68c4c0b |
|||
WECHAT_TOKEN=your-random-token |
|||
|
|||
# MySQL数据库配置(请根据您的实际环境修改) |
|||
# 如果是首次使用,可能需要先在MySQL中创建wechat_app数据库 |
|||
DB_HOST=1.95.162.61 |
|||
DB_PORT=3306 |
|||
DB_NAME=mini_program |
|||
DB_USER=mini_program_user |
|||
DB_PASSWORD=your_user_password |
|||
DB_DATABASE=wechat_app |
|||
# 请使用您实际的MySQL用户名 |
|||
DB_USER=root |
|||
# 请使用您实际的MySQL密码 |
|||
# 如果MySQL的root用户有密码,请在此处填写 |
|||
# 如果没有密码,请保留为空字符串(DB_PASSWORD="") |
|||
DB_PASSWORD=schl@2025 |
|||
|
|||
# 服务器配置 |
|||
PORT=3000 |
|||
PORT=3003 |
|||
# 日志配置 |
|||
LOG_LEVEL=debug |
|||
NODE_ENV=production |
|||
|
|||
# OSS配置 |
|||
OSS_REGION=your-oss-region |
|||
OSS_ACCESS_KEY_ID=your-oss-access-key |
|||
OSS_ACCESS_KEY_SECRET=your-oss-secret-key |
|||
OSS_BUCKET=your-oss-bucket |
|||
|
|||
# 微信小程序配置 |
|||
WECHAT_APPID=your-wechat-appid |
|||
WECHAT_SECRET=your-wechat-secret |
|||
|
|||
# JWT配置 |
|||
JWT_SECRET=your-jwt-secret |
|||
# 详细日志记录,用于问题排查 |
|||
ENABLE_DETAILED_LOGGING=true |
|||
Loading…
Reference in new issue