-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathturbo.json
More file actions
30 lines (30 loc) · 866 Bytes
/
turbo.json
File metadata and controls
30 lines (30 loc) · 866 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": [
"BETTER_AUTH_SECRET",
"BLOB_READ_WRITE_TOKEN",
"ENCRYPTION_KEY",
"GITHUB_CLIENT_SECRET",
"JWE_SECRET",
"KV_REST_API_READ_ONLY_TOKEN",
"KV_REST_API_TOKEN",
"KV_REST_API_URL",
"KV_URL",
"NEXT_PUBLIC_AUTH_PROVIDERS",
"NEXT_PUBLIC_GITHUB_CLIENT_ID",
"NEXT_PUBLIC_VERCEL_APP_CLIENT_ID",
"POSTGRES_URL",
"REDIS_URL",
"VERCEL_APP_CLIENT_SECRET"
],
"outputs": ["dist/**"]
},
"dev": { "cache": false, "persistent": true },
"typecheck": { "dependsOn": ["^typecheck"], "outputs": [] },
"lint": { "dependsOn": ["^lint"], "outputs": [] },
"lint:fix": { "dependsOn": ["^lint:fix"], "outputs": [] }
}
}