-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathturbo.json
More file actions
85 lines (85 loc) · 1.64 KB
/
Copy pathturbo.json
File metadata and controls
85 lines (85 loc) · 1.64 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
{
"$schema": "https://turbo.build/schema.json",
"daemon": false,
"concurrency": "20",
"globalEnv": [
"NODE_ENV",
"DATABASE_URL",
"REDIS_URL",
"BACKEND_PORT",
"CORS_ORIGIN",
"NEXT_PUBLIC_API_URL",
"NEXT_PUBLIC_WS_URL",
"FRONTEND_PORT",
"ANTHROPIC_API_KEY",
"OPENAI_API_KEY",
"GOOGLE_AI_API_KEY",
"JELLYFIN_URL",
"JELLYFIN_API_KEY",
"PLEX_URL",
"PLEX_TOKEN",
"EMBY_URL",
"EMBY_API_KEY",
"SONARR_URL",
"SONARR_API_KEY",
"RADARR_URL",
"RADARR_API_KEY",
"PROWLARR_URL",
"PROWLARR_API_KEY",
"WHISPARR_URL",
"WHISPARR_API_KEY",
"JELLYFIN_LOGS_PATH",
"PLEX_LOGS_PATH",
"EMBY_LOGS_PATH",
"SONARR_LOGS_PATH",
"RADARR_LOGS_PATH",
"PROWLARR_LOGS_PATH",
"WHISPARR_LOGS_PATH"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"]
},
"lint:fix": {
"dependsOn": ["^build"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"cache": false
},
"test:watch": {
"cache": false,
"persistent": true
},
"test:coverage": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"cache": false
},
"clean": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
}
}
}