-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.05 KB
/
Copy pathturbo.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalEnv": [
"NEXT_PUBLIC_APP_URL",
"NEXT_PUBLIC_SUPABASE_URL",
"NEXT_PUBLIC_SUPABASE_ANON_KEY",
"SUPABASE_URL",
"SUPABASE_ANON_KEY",
"SUPABASE_SERVICE_ROLE_KEY",
"ADMIN_USER_ID",
"KAKAO_REST_API_KEY",
"KAKAO_SECRET_KEY",
"NODE_ENV",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"OPENAI_API_KEY",
"BADGE_MAX_SONGS",
"BADGE_CONCURRENCY",
"BADGE_DRY_RUN",
"START_NUMBER",
"END_NUMBER",
"TJ_CONCURRENCY",
"TJ_DRY_RUN",
"TJ_RESET_PROGRESS",
"DEAD_SONGS_APPLY"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"format": {
"dependsOn": ["^format"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
}
}
}