-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathturbo.json
More file actions
62 lines (62 loc) · 1.29 KB
/
Copy pathturbo.json
File metadata and controls
62 lines (62 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"inputs": [
"$TURBO_DEFAULT$",
".env*"
],
"outputs": [
".next/**",
"!.next/cache/**"
],
"env": [
"NODE_ENV",
"VERCEL_URL",
"VERCEL_PROJECT_PRODUCTION_URL",
"DATABASE_URL",
"BETTER_AUTH_SECRET",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"NEXT_PUBLIC_DOMAIN",
"NEXT_PUBLIC_EMAIL_DOMAIN",
"NEXT_PUBLIC_POLAR_URL",
"POLAR_ACCESS_TOKEN",
"POLAR_WEBHOOK_SECRET",
"POLAR_SERVER",
"AWS_ACCESS_KEY_VALUE",
"AWS_SECRET_KEY_VALUE",
"AWS_BUCKET_ORIGIN",
"AWS_BUCKET_NAME",
"NEXT_PUBLIC_AWS_URL",
"R2_ENDPOINT",
"R2_ACCESS_KEY_ID",
"R2_SECRET_ACCESS_KEY",
"R2_BUCKET_NAME",
"R2_PUBLIC_URL",
"STRIPE_SECRET_KEY",
"STRIPE_WEBHOOK_SECRET"
]
},
"lint": {
"dependsOn": [
"^lint"
]
},
"check-types": {
"dependsOn": [
"^check-types"
]
},
"dev": {
"cache": false,
"persistent": true
}
}
}