-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
48 lines (47 loc) · 1022 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"BASE_URL",
"POSTGRES_PRISMA_URL",
"POSTGRES_URL_NON_POOLING",
"AUTH_SECRET",
"DISCORD_CLIENT_ID",
"DISCORD_CLIENT_SECRET",
"FB_API_BASE_URL",
"FB_ACCESS_TOKEN",
"FB_PAGE_ID",
"FB_BUSINESS_ID",
"CRON_SECRET"
],
"tasks": {
"build": {
"env": [],
"dependsOn": ["^generate", "^build"],
"inputs": ["$TURBO_DEFAULT", ".env*"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"cache": false
},
"db:migrate:deploy": {},
"db:push": {},
"db:seed": {},
"db:migrate:dev": {
"env": ["POSTGRES_URL_NON_POOLING", "POSTGRES_PRISMA_URL"],
"cache": false
},
"dev": {
"dependsOn": ["^generate"],
"cache": false,
"persistent": true
},
"type-check": {
"cache": true
},
"generate": {
"cache": false
},
"//#format-and-lint": {},
"//#format-and-lint:fix": {
"cache": false
}
}
}