-
Notifications
You must be signed in to change notification settings - Fork 17
/
turbo.json
48 lines (48 loc) · 1.15 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"NODE_ENV",
"NEXTAUTH_URL",
"NEXT_PUBLIC_ROOT_DOMAIN",
"POSTGRES_PRISMA_URL",
"POSTGRES_URL_NON_POOLING",
"AUTH_GITHUB_SECRET",
"AUTH_GITHUB_ID",
"NEXTAUTH_SECRET",
"AUTH_GOOGLE_CLIENT_ID",
"AUTH_GOOGLE_CLIENT_SECRET",
"NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY",
"STRIPE_SECRET_KEY",
"STRIPE_SECRET_KEY_LIVE",
"STRIPE_WEBHOOK_SECRET",
"NEXT_PUBLIC_VERCEL_ENV",
"VERCEL_URL"
],
"pipeline": {
"build": {
"dependsOn": ["^build", "@turbocharger/database#db:generate"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"typecheck": { "dependsOn": ["^build"], "cache": false },
"dev": {
"dependsOn": ["^build", "@turbocharger/database#db:generate"],
"cache": false
},
"clean": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:seed": {
"cache": false
}
}
}