-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
68 lines (51 loc) · 2.18 KB
/
.env.example
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# ******************** prisma ********************
# DATABASE_URL="file:./db.sqlite"
DATABASE_URL="mysql://root:[email protected]:3306/blog"
# ******************** 阿里云OSS ********************
# 阿里云OSS ACCESS_KEY
# 必填(线上)
OSS_ACCESS_KEY_ID="your-oss-access-key-id"
# 必填(线上)
# 阿里云OSS ACCESS_KEY_SECRET
OSS_ACCESS_KEY_SECRET="your-oss-access-key-secret"
# 进入某个bucket后的浏览器的地址:https://oss.console.aliyun.com/bucket/oss-cn-shenzhen/blog/object
# 可以从url里看到是哪个区域和bucket
# 阿里云OSS REGION 这个不能随便写,有具体的值,看自己的oss是在哪个区域
# 必填(线上)
OSS_REGION="oss-cn-shenzhen"
# 阿里云OSS BUCKET
# 必填(线上)
OSS_BUCKET="your-bucket"
# 阿里云OSS 上传文件后所在目录
# 必填(线上)
OSS_UPLOAD_DIR="images"
# ******************** 网站 ********************
# 网站的预览地址(根据实际情况设置),站点地图的生成也是用这个当做域名前缀
# 必填(线上)
SITE_URL="http://localhost:6121"
# ******************** next-auth ********************
# NEXTAUTH_URL默认是 http://localhost:3000,需要根据环境调整
# 本地启动时端口号改了,这里也要跟着变
# 如果是线上,那就是线上的地址(线上可不设置)
# 必须设置,否则getServerSession会一直返回null
# 必填
AUTH_GITHUB_ID="your-github-id"
# 必填
AUTH_GITHUB_SECRET="your-github-secret"
# 必填
AUTH_GOOGLE_ID="your-google-id"
# 必填
AUTH_GOOGLE_SECRET="your-google-secret"
# 如果是线上,AUTH_SECRET必须设置
# 必填(线上)
AUTH_SECRET="your-next-auth-secret"
# 设置的值为你网站的域名+/api/auth,eg: http://youngjeff.cn/api/auth
# 必填(线上)本地可忽略
# AUTH_URL="http://youngjeff.cn/api/auth"
# ******************** ADMIN ********************
# ADMIN 邮箱列表,多个邮箱用英文逗号分隔开(不要加空格)
# 因为这个变量客户端也可能访问,所以必须以NEXT_PUBLIC_开头
# 必填
NEXT_PUBLIC_ADMIN_EMAILS="[email protected],[email protected]"
# ******************** walletconnect ********************
NEXT_PUBLIC_WALLET_ADDRESS='0x11111111,0x222222'