-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathturbo.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathturbo.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL",
"POLAR_ACCESS_TOKEN",
"POLAR_SUCCESS_URL",
"TURSO_DATABASE_URL",
"TURSO_AUTH_TOKEN",
"POLAR_PRODUCT_ID",
"POLAR_WEBHOOK_SECRET",
"TURSO_AUTH_TOKEN",
"TURSO_DATABASE_URL",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"SOCKET_SECRET",
"REDIS_URL",
"ENABLE_EXPERIMENTAL_COREPACK",
"DATABASE_URL"
]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}