-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
44 lines (44 loc) · 935 Bytes
/
turbo.json
File metadata and controls
44 lines (44 loc) · 935 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
37
38
39
40
41
42
43
44
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^test"],
"cache": false,
"passThroughEnv": [
"DATABASE_URL",
"REDIS_URL",
"OPENAI_API_KEY",
"ANTHROPIC_API_KEY",
"GOOGLE_GEMINI_API_KEY",
"WHATSAPP_APP_SECRET",
"WHATSAPP_VERIFY_TOKEN",
"WHATSAPP_API_VERSION",
"ADMIN_SECRET"
]
},
"db:generate": {
"cache": false,
"passThroughEnv": ["DATABASE_URL"]
},
"db:migrate": {
"cache": false,
"passThroughEnv": ["DATABASE_URL"]
},
"db:studio": {
"cache": false,
"persistent": true,
"passThroughEnv": ["DATABASE_URL"]
}
}
}