40 lines
813 B
Plaintext
40 lines
813 B
Plaintext
# 环境配置文件示例
|
|
# 请复制为 .env.development 或 .env.production 并根据环境修改
|
|
|
|
# 应用配置
|
|
NODE_ENV=development
|
|
PORT=3000
|
|
APP_NAME=爱鉴花小程序后端
|
|
|
|
# MySQL数据库配置
|
|
DB_HOST=129.211.213.226
|
|
DB_PORT=9527
|
|
DB_USERNAME=root
|
|
DB_PASSWORD=aiotAiot123!
|
|
DB_DATABASE=ajhdata
|
|
|
|
# Redis配置
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
|
|
# 腾讯云配置
|
|
TENCENT_CLOUD_SECRET_ID=your_secret_id
|
|
TENCENT_CLOUD_SECRET_KEY=your_secret_key
|
|
COS_BUCKET=your_bucket_name
|
|
COS_REGION=ap-beijing
|
|
|
|
# 微信小程序配置
|
|
WX_APPID=your_wechat_appid
|
|
WX_APPSECRET=your_wechat_appsecret
|
|
|
|
# JWT配置
|
|
JWT_SECRET=your_jwt_secret_key
|
|
JWT_EXPIRE=7d
|
|
|
|
# 文件上传配置
|
|
UPLOAD_MAX_SIZE=10485760
|
|
UPLOAD_ALLOW_TYPES=image/jpeg,image/png,image/gif
|
|
|
|
# 跨域配置
|
|
CORS_ORIGIN=http://localhost:8080 |