-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
53 lines (53 loc) · 938 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build",
"db:generate"
],
"env": [
"TAURI_PLATFORM",
"TAURI_DEBUG",
"VITE_API_URL",
"VITE_WEB_URL"
],
"outputs": [
"dist/**",
".output/**",
"src-tauri/target"
]
},
"lint": {
"outputs": []
},
"dev": {
"dependsOn": [
"db:generate"
],
"env": [
"TAURI_PLATFORM",
"TAURI_DEBUG",
"LOGTO_APP_ID",
"LOGTO_APP_SECRET",
"LOGTO_ENDPOINT",
"ORIGIN",
"LOGTO_COOKIE_SECRET",
"NODE_ENV",
"LOGTO_RESOURCE",
"API_URL"
],
"cache": false
},
"start": {
"persistent": true,
"dependsOn": [
"^build"
]
},
"test:e2e": {},
"db:generate": {
"cache": false
}
}
}