-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
34 lines (34 loc) · 891 Bytes
/
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local", "**/tsconfig.json", "NODE_ENV"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"cache": true,
"env": [
"NODE_ENV",
"OPENAI_API_KEY",
"NEXT_PUBLIC_GPT_35_INPUT",
"NEXT_PUBLIC_GPT_35_OUTPUT",
"NEXT_PUBLIC_GPT_4_INPUT",
"NEXT_PUBLIC_GPT_4_OUTPUT",
"NEXT_PUBLIC_DALLE_256",
"NEXT_PUBLIC_DALLE_512",
"NEXT_PUBLIC_DALLE_1024",
"S3_SECRET_KEY",
"ENVIROMENT",
"PROD_DOMAIN"
],
"dotEnv": [".env.local", ".env"]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true,
"env": ["NODE_ENV", "S3_SECRET_KEY"]
}
},
"globalDotEnv": [".env.local", ".env"],
"globalEnv": ["NODE_ENV"]
}