-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathturbo.json
More file actions
73 lines (73 loc) · 1.29 KB
/
turbo.json
File metadata and controls
73 lines (73 loc) · 1.29 KB
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
{
"$schema": "https://v2-8-3.turborepo.dev/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**"],
"env": [
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL",
"CLOUDFLARE_ACCOUNT_ID",
"CORS_ORIGIN",
"DATABASE_URL",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GOOGLE_REDIRECT_URI",
"OPENAI_API_KEY",
"R2_ACCESS_KEY",
"R2_ACCESS_KEY_ID",
"R2_API_ENDPOINT",
"R2_BUCKET_NAME",
"R2_PUBLIC_URL",
"RESEND_API_KEY",
"RESEND_SENDER_EMAIL",
"VITE_PUBLIC_POSTHOG_KEY",
"VITE_PUBLIC_POSTHOG_HOST"
]
},
"lint": {
"dependsOn": ["^lint"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"dev": {
"cache": false,
"persistent": true
},
"db:push": {
"cache": false,
"persistent": true
},
"db:studio": {
"cache": false,
"persistent": true
},
"db:migrate": {
"cache": false,
"env": ["DATABASE_URL"]
},
"db:generate": {
"cache": false,
"persistent": true
},
"db:start": {
"cache": false,
"persistent": true
},
"db:stop": {
"cache": false,
"persistent": true
},
"db:watch": {
"cache": false,
"persistent": true
},
"db:down": {
"cache": false,
"persistent": true
}
}
}