forked from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
127 lines (127 loc) · 2.79 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
{
"$schema": "https://turborepo.org/schema.json",
"experimentalUI": true,
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
".output/**",
".vercel/output/**"
],
"dotEnv": [".env.local", ".env.production", ".env.development"]
},
"@yocxo/coco#build": {
"dependsOn": ["^build"],
"env": [
"AUTH_DISCORD_ID",
"AUTH_DISCORD_SECRET",
"AUTH_SECRET",
"KV_URL",
"KV_REST_API_URL",
"KV_REST_API_TOKEN",
"KV_REST_API_READ_ONLY_TOKEN",
"OPENAI_API_KEY",
"NEXT_PUBLIC_APP_URL"
],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".output/**",
".vercel/output/**"
]
},
"@yocxo/mai#build": {
"dependsOn": ["^build"],
"env": [
"EXA_API_KEY",
"OPENAI_API_KEY",
"OPENAI_API_ORG",
"OPENAI_API_MODEL",
"NEXT_PUBLIC_APP_URL",
"SPECIFIC_API_BASE",
"SPECIFIC_API_KEY",
"SPECIFIC_API_MODEL",
"TAVILY_API_KEY",
"UPSTASH_REDIS_REST_TOKEN",
"UPSTASH_REDIS_REST_URL",
"USE_SPECIFIC_API_FOR_WRITER"
],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".output/**",
".vercel/output/**"
]
},
"@yocxo/web#build": {
"dependsOn": ["^build"],
"env": [
"AUTH_DISCORD_ID",
"AUTH_DISCORD_SECRET",
"AUTH_REDIRECT_PROXY_URL",
"AUTH_SECRET",
"AUTH_URL",
"BASEHUB_TOKEN",
"DB_HOST",
"DB_NAME",
"DB_USERNAME",
"DB_PASSWORD",
"NEXT_PUBLIC_APP_URL",
"PERPLEXITY_API_KEY"
],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".output/**",
".vercel/output/**"
]
},
"dev": {
"persistent": true,
"cache": false
},
"format": {
"outputs": ["node_modules/.cache/.prettiercache"],
"outputMode": "new-only"
},
"lint": {
"dependsOn": ["^topo"],
"outputs": ["node_modules/.cache/.eslintcache"]
},
"typecheck": {
"dependsOn": ["^topo"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"clean": {
"cache": false
},
"//#clean": {
"cache": false
}
},
"globalEnv": [
"AUTH_DISCORD_ID",
"AUTH_DISCORD_SECRET",
"AUTH_REDIRECT_PROXY_URL",
"AUTH_SECRET",
"AUTH_URL",
"BASEHUB_TOKEN",
"DB_HOST",
"DB_NAME",
"DB_USERNAME",
"DB_PASSWORD",
"TURBO_TEAM",
"TURBO_TOKEN"
]
}