-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
turbo.json
48 lines (48 loc) · 944 Bytes
/
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": ["apps/web/.env"],
"tasks": {
"build": {
"outputs": [".next/**", "!.next/cache/**"],
"cache": false
},
"dev": {
"cache": false,
"persistent": true,
"env": ["CRON_SECRET", "OWNER_EMAIL", "CRYPT_SECRET"]
},
"lint": {
"env": ["URL_PREFIX"]
},
"setup": {
"cache": false
},
"test": {
"cache": false
},
"test:silent": {
"cache": false
},
"start": {
"cache": false
}
},
"globalEnv": [
"development",
"CRYPT_KEY",
"DEBUG",
"MONGO_ADDRESS",
"RABBITMQ_ADDRESS",
"RESEND_KEY",
"VERCEL_URL",
"VERCEL_ENV",
"NEXT_PUBLIC_POSTHOG_KEY",
"SUPABASE_URL",
"SUPABASE_SERVICE_ROLE",
"NEXT_PUBLIC_POSTHOG_HOST",
"NEXT_PUBLIC_MIXPANEL_KEY",
"NEXT_PUBLIC_PLAUSIBLE_ADDRESS",
"REDIS_HOST",
"REDIS_PORT"
]
}