48 lines
912 B
Plaintext
48 lines
912 B
Plaintext
# 服务器配置
|
||
NODE_ENV=development
|
||
PORT=3200
|
||
HOST=0.0.0.0
|
||
|
||
# 数据库配置
|
||
DB_HOST=mysql.jiebanke.com
|
||
DB_PORT=3306
|
||
DB_USER=root
|
||
DB_PASSWORD=your-mysql-password
|
||
DB_NAME=jiebandata
|
||
DB_NAME_TEST=jiebandata_test
|
||
|
||
# JWT配置
|
||
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
||
JWT_EXPIRE=7d
|
||
|
||
# 微信配置
|
||
WECHAT_APPID=your-wechat-appid
|
||
WECHAT_SECRET=your-wechat-secret
|
||
|
||
# 文件上传配置
|
||
UPLOAD_MAX_SIZE=10485760
|
||
UPLOAD_ALLOWED_TYPES=image/jpeg,image/png,image/gif
|
||
|
||
# 邮件配置(可选)
|
||
SMTP_HOST=smtp.gmail.com
|
||
SMTP_PORT=587
|
||
SMTP_USER=your-email@gmail.com
|
||
SMTP_PASS=your-email-password
|
||
|
||
# Redis配置(可选)
|
||
REDIS_HOST=redis.jiebanke.com
|
||
REDIS_PORT=6379
|
||
REDIS_PASSWORD=
|
||
|
||
# MySQL连接池配置
|
||
DB_CONNECTION_LIMIT=10
|
||
DB_CHARSET=utf8mb4
|
||
DB_TIMEZONE=+08:00
|
||
|
||
# 第三方API配置
|
||
MAP_API_KEY=your-map-api-key
|
||
SMS_API_KEY=your-sms-api-key
|
||
|
||
# 调试配置
|
||
DEBUG=jiebanke:*
|
||
LOG_LEVEL=info |