| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- # 多八多Aider 环境变量配置模板
- # ========================
- # 服务器配置
- # ========================
- # 应用基础配置
- APP_NAME=多八多Aider
- PORT=8080
- NODE_ENV=development
- BASE=/
- # 数据库配置
- DB_HOST=localhost
- DB_PORT=5432
- DB_NAME=d8dai
- DB_USER=postgres
- DB_PASSWORD=your_password_here
- # Redis配置
- REDIS_HOST=localhost
- REDIS_PORT=6379
- REDIS_PASSWORD=
- # MinIO对象存储配置
- MINIO_ENDPOINT=localhost
- MINIO_PORT=9000
- MINIO_ACCESS_KEY=your_access_key
- MINIO_SECRET_KEY=your_secret_key
- MINIO_BUCKET=d8dai
- MINIO_USE_SSL=false
- # OSS配置
- OSS_BASE_URL=https://oss.d8d.fun
- # JWT配置
- JWT_SECRET=your_jwt_secret_here
- JWT_EXPIRE=7d
- # 复制此文件为 .env 并修改相应配置
|