-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
37 lines (37 loc) · 1019 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
{
"globalEnv": ["VERCEL_DEPLOY", "CI", "SUPABASE_URL", "SUPABASE_SERVICE_ROLE_KEY"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"test:unit": {},
"format:fix": {},
"format:check": {},
"dev": {
"cache": false,
"persistent": true,
"interactive": true,
"env": ["SUPABASE_URL", "SUPABASE_ANON_KEY", "PUBLIC_ENVIRONMENT"]
},
"db:reset": {
"cache": false,
"persistent": true,
"env": ["POSTGRES_HOST", "POSTGRES_PORT", "POSTGRES_DB", "POSTGRES_PASSWORD"]
},
"db:dump": {
"cache": false,
"env": ["POSTGRES_HOST", "POSTGRES_PORT", "POSTGRES_DB", "POSTGRES_PASSWORD"]
},
"db:types": {
"cache": false,
"env": ["POSTGRES_HOST", "POSTGRES_PORT", "POSTGRES_DB", "POSTGRES_PASSWORD"]
}
},
"ui": "tui",
"$schema": "https://turbo.build/schema.json"
}