-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
162 lines (162 loc) · 3.48 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".cache/tsbuildinfo.json", "dist/**"]
},
"www#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"dash#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"service#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["DATABASE_URL"]
},
"lint": {
"dependsOn": ["^build"],
"outputs": [".cache/.eslintcache"]
},
"lint:fix": {
"dependsOn": ["^build"],
"outputs": [".cache/.eslintcache"]
},
"type:check": {
"cache": true
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"cache": true
},
"test:watch": {
"outputs": []
},
"test:cov": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"cache": true
},
"test:debug": {
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"dev:turbo": {
"cache": false,
"persistent": true
},
"start": {
"dependsOn": ["^build"],
"cache": false
},
"clean": {
"cache": false
},
"test:e2e": {
"dependsOn": ["^build"],
"outputs": ["coverage/**", "playwright-report/**"],
"cache": true
},
"db:seed": {
"cache": false
},
"db:studio": {
"cache": false,
"interactive": true
},
"service-graph": {},
"ui-add": {
"cache": false,
"interactive": true
}
},
"globalEnv": [
"BASE_URL",
"SITE_URL",
"HOST",
"PORT",
"NODE_ENV",
"ANALYZE",
"CI",
"SKIP_ENV_VALIDATION",
"VERCEL",
"ZEABUR_URL",
"VERCEL_URL",
"RAILWAY_STATIC_URL",
"RAILWAY_PUBLIC_DOMAIN",
"REDIS_URI",
"REDIS_URL",
"DB_URL",
"DATABASE_URL",
"*_DATABASE_URL",
"ADMIN_ID",
"*_ADMIN_ID",
"GITHUB_API",
"GITHUB_GRAPHQL_API",
"GH_PUBLIC_TOKEN",
"GOOGLE_API",
"SPOTIFY_NOW_PLAYING_URL",
"SPOTIFY_TOKEN_URL",
"EDGE_CONFIG",
"NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT",
"NEXT_PUBLIC_VERCEL_ENV",
"RAILWAY_ENVIRONMENT_NAME",
"ZEABUR_ENVIRONMENT_NAME",
"VERCEL_ENV",
"*_VERCEL_ENV",
"ENV",
"*_ENV",
"OPENAI_API_KEY",
"HUGGINGFACE_API_KEY",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"NEXT_RUNTIME",
"SPOTIFY_CLIENT_ID",
"SPOTIFY_CLIENT_SECRET",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"AUTH_SECRET",
"INTERNAL_SERVICE_ENDPOINT",
"NEXT_PUBLIC_SERVICE_ENDPOINT",
"NEXT_PUBLIC_SERVICE_PROXY_ENDPOINT"
],
"globalPassThroughEnv": [
"NEXT_PUBLIC_GTM_ID",
"SHA_256_HASH",
"GH_PUBLIC_TOKEN",
"NEXT_PUBLIC_RE_CAPTCHA_KEY",
"RE_CAPTCHA_KEY",
"GOOGLE_API_KEY",
"SPOTIFY_FAVORITE_PLAYLIST_ID",
"SPOTIFY_REFRESH_TOKEN",
"SENDGRID_KEY",
"UPSTASH_TOKEN",
"RESEND_API_KEY",
"NEXT_PUBLIC_UMAMI_WEBSITE_ID",
"NEXT_PUBLIC_UMAMI_URL",
"UMAMI_DB_URL",
"UMAMI_EDGE_DB_URL",
"YOUTUBE_ID",
"YOUTUBE_LIST_ID",
"NEXT_PUBLIC_GISCUS_REPO",
"NEXT_PUBLIC_GISCUS_REPO_ID",
"NEXT_PUBLIC_GISCUS_CATEGORY_ID",
"NEXT_PUBLIC_GISCUS_CATEGORY",
"NEXT_PUBLIC_GISCUS_THEME",
"INTERNAL_SERVICE_ENDPOINT",
"NEXT_PUBLIC_SERVICE_ENDPOINT",
"NEXT_PUBLIC_SERVICE_PROXY_ENDPOINT"
]
}