forked from different-ai/openwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
33 lines (33 loc) · 669 Bytes
/
turbo.json
File metadata and controls
33 lines (33 loc) · 669 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
31
32
33
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"OPENWORK_DEV_MODE",
"DATABASE_URL",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL",
"DEN_BETTER_AUTH_TRUSTED_ORIGINS",
"CORS_ORIGINS",
"DEN_API_PORT",
"DEN_CONTROLLER_PORT",
"DEN_WORKER_PROXY_PORT",
"DEN_WEB_PORT",
"DEN_API_BASE",
"DEN_AUTH_ORIGIN",
"DEN_AUTH_FALLBACK_BASE",
"PROVISIONER_MODE"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"dev:local": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
}
}
}