-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
59 lines (59 loc) · 1.28 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"PORT",
"NODE_ENV",
"NEXT_PUBLIC_BASE_URL",
"CI",
"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY",
"CLERK_SECRET_KEY",
"GCP_STORAGE_BUCKET_NAME",
"DATABASE_URL",
"IS_DOCKER",
"OPENAI_API_KEY",
"OPENAI_BASE_PATH",
"VERCEL_URL",
"VERCEL_BRANCH_URL",
"VERCEL_ENV",
"GOOGLE_APPLICATION_CREDENTIALS",
"AI_SERVICE_API_BASE_URL",
"POSTHOG_API_KEY",
"SECRET",
"PUSHER_APP_ID",
"PUSHER_APP_SECRET",
"NEXT_PUBLIC_PUSHER_APP_KEY",
"NEXT_PUBLIC_PUSHER_APP_CLUSTER",
"LOGSNAG_TOKEN",
"NEXT_PUBLIC_SLACK_CLIENT_ID",
"SLACK_CLIENT_SECRET",
"MOCK_CHAT",
"E2E_USERNAME",
"E2E_PASSWORD",
"NEXT_PUBLIC_BYTESCALE_PUBLIC_API_KEY",
"BYTESCALE_SECRET_API_KEY",
"NEXT_PUBLIC_BYTESCALE_PUBLIC_ACCOUNT_ID"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"format:check": {},
"format:write": {
"cache": false,
"outputs": []
},
"lint": {},
"lint:fix": {
"cache": false,
"outputs": []
},
"test": {},
"test:e2e": {}
}
}