forked from AprilNEA/ChatGPT-Admin-Web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
turbo.json
50 lines (50 loc) · 1.02 KB
/
turbo.json
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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
],
"env": [
"JWT_SECRET",
"NEXT_PUBLIC_TITLE",
"NEXT_PUBLIC_WECHAT_OA",
"REDIS_URL",
"REDIS_TOKEN",
"OPENAI_ENDPOINT",
"OPENAI_API_KEY",
"BING_COOKIE",
"DOMAIN",
"CALLBACK_DOMAIN",
"XUNHU_PAY_APPID",
"XUNHU_PAY_APPSECRET",
"NEXT_PUBLIC_EMAIL_SERVICE",
"MAILGUN_EMAIL_DOMAIN",
"MAILGUN_EMAIL_API_KEY",
"ELASTICE_EMAIL_API_KEY",
"ELASTICE_EMAIL_SENDER",
"SMS_ACCESS_KEY_ID",
"TEXT_SECURITY",
"TENCENT_SECRETID",
"TENCENT_SECRETKEY",
"BAIDU_APIKEY",
"BAIDU_SECRETKEY",
"EDGE_CONFIG"
]
},
"test": {
"dependsOn": [
"^test"
]
},
"dev": {
"cache": false,
"persistent": true
}
}
}