-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
87 lines (87 loc) · 2.03 KB
/
Copy pathturbo.json
File metadata and controls
87 lines (87 loc) · 2.03 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": ["**/.env.*local", ".env", ".env.local"],
"globalEnv": ["NODE_ENV", "CI"],
"ui": "stream",
"envMode": "strict",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$"],
"env": [
"DATABASE_URL",
"HOCUSPOCUS_WSS_URL",
"HOCUSPOCUS_API_URL",
"HOCUSPOCUS_API_KEY",
"SALT_ROUNDS",
"RESEND_API_KEY",
"FROM_EMAIL_FIELD",
"NOTE_PASSWORD_SECURITY_CODE_TEMPLATE_ID",
"STRIPE_SECRET_KEY",
"STRIPE_WEBHOOK_SECRET",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"NEXT_PUBLIC_APP_URL",
"NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY"
],
"outputs": [
".next/**",
"!.next/cache/**",
"**/generated/**",
"storybook-static/**",
".react-email/**",
"dist/**"
]
},
"dev": {
"cache": false,
"persistent": true,
"env": [
"DATABASE_URL",
"HOCUSPOCUS_WSS_URL",
"HOCUSPOCUS_API_URL",
"HOCUSPOCUS_API_KEY",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"NEXT_PUBLIC_APP_URL"
]
},
"start": {
"cache": false,
"dependsOn": ["build"],
"persistent": true,
"env": [
"DATABASE_URL",
"HOCUSPOCUS_WSS_URL",
"HOCUSPOCUS_API_URL",
"HOCUSPOCUS_API_KEY",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"NEXT_PUBLIC_APP_URL"
]
},
"typecheck": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "tsconfig.json"],
"outputs": []
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$"],
"outputs": []
},
"analyze": {
"dependsOn": ["build"],
"outputs": ["analyze/**", ".next/analyze/**"]
},
"generate": {
"cache": false
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
}
}
}