-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
45 lines (38 loc) · 1.24 KB
/
env.example
File metadata and controls
45 lines (38 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 环境变量配置示例
# 复制此文件为 .env 并填入真实配置
# ===========================================
# 数据库配置
# ===========================================
DB_USER=your_database_username
DB_PASS=your_database_password
# ===========================================
# Redis配置
# ===========================================
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
REDIS_PASS=
REDIS_DB=0
# ===========================================
# JWT配置
# ===========================================
JWT_SECRET=your_very_long_and_strong_jwt_secret_key_here_at_least_256_bits
# ===========================================
# 加密密钥
# ===========================================
SECRETS_AES_KEY=your_32_character_aes_key_here
# ===========================================
# 邮件配置
# ===========================================
MAIL_HOST=smtp.qq.com
MAIL_PORT=587
MAIL_USER=your_email@qq.com
MAIL_PASS=your_email_app_password
# ===========================================
# GitHub配置
# ===========================================
GITHUB_TOKEN=your_github_token_here
# ===========================================
# 其他配置
# ===========================================
# 生产环境域名
PROD_DOMAIN=https://your-domain.com