-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathturbo.json
More file actions
36 lines (36 loc) · 798 Bytes
/
turbo.json
File metadata and controls
36 lines (36 loc) · 798 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
34
35
36
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"PORT",
"POSTGRES_USER",
"POSTGRES_PASSWORD",
"POSTGRES_DB",
"POSTGRES_HOST",
"POSTGRES_PORT",
"DATABASE_URL",
"NUXT_PUBLIC_API_URL",
"PORT_FRONTEND",
"PORT_API",
"FRONTEND_URL",
"API_URL",
"JWT_SECRET"
],
"globalDependencies": [".env", ".env.local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".output/**", ".nuxt/**", "dist/**"],
"env": ["API_URL", "FRONTEND_URL", "PORT_FRONTEND", "PORT_API"]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"],
"env": ["API_URL", "FRONTEND_URL", "PORT_FRONTEND", "PORT_API"]
}
}
}