forked from senchabot-opensource/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
51 lines (51 loc) · 1.01 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
51
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build", "^db:generate"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"env": [
"VERCEL_URL", "PORT", "NODE_ENV"
]
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"dependsOn": ["^db:generate"],
"cache": false
},
"start": {
"cache": false
},
"clean": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:seed": {
"cache": false
},
"db:studio": {
"cache": false
}
},
"globalEnv": [
"NEXT_PUBLIC_APP_NAME",
"NEXT_PUBLIC_APP_URL",
"NEXT_PUBLIC_APP_VERSION",
"NEXT_PUBLIC_APP_GITHUB_PROFILE",
"NEXT_PUBLIC_APP_TWITTER_PROFILE",
"NEXT_PUBLIC_APP_DOMAIN_STRING",
"NEXT_PUBLIC_APP_CONTENT_STRING",
"NEXT_PUBLIC_APP_DISCORD_BOT_INVITE_URL"
]
}