-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
101 lines (101 loc) · 2.08 KB
/
turbo.json
File metadata and controls
101 lines (101 loc) · 2.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://v2-9-5.turborepo.dev/schema.json",
"ui": "tui",
"remoteCache": {
"signature": false
},
"globalEnv": [
"DATABASE_URL",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"BETTER_AUTH_COOKIE_PREFIX",
"DATABASE_URL_UNPOOLED",
"NODE_ENV",
"NEXT_PUBLIC_APP_URL",
"DOMUS_LOCALE_COOKIE_NAME",
"SUPER_ADMIN_EMAIL",
"SUPER_ADMIN_PASSWORD",
"SUPER_ADMIN_NAME",
"NEXT_PUBLIC_DOMUS_VERSION",
"CRON_SECRET",
"AXIOM_TOKEN",
"AXIOM_DATASET",
"CF_API_TOKEN",
"CF_ACCOUNT_ID",
"CF_AUD",
"CF_JWKS",
"WHATSAPP_TOKEN",
"GDRIVE_SERVICE_ACCOUNT_KEY",
"GDRIVE_FOLDER_ID_CARD",
"GDRIVE_IMPERSONATE_EMAIL",
"R2_ACCOUNT_ID",
"R2_ACCESS_KEY_ID",
"R2_SECRET_ACCESS_KEY",
"R2_BUCKET_NAME",
"R2_PUBLIC_URL",
"SENTRY_AUTH_TOKEN",
"SYNC_TARGET_URL",
"SYNC_USERNAME",
"SYNC_PASSWORD",
"SYNC_COOKIE_TTL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"//#lint": {
"inputs": ["$TURBO_DEFAULT$", "biome.json"]
},
"//#format": {
"inputs": ["$TURBO_DEFAULT$", "biome.json"]
},
"//#check": {
"inputs": ["$TURBO_DEFAULT$", "biome.json"]
},
"db:generate": {
"cache": false,
"persistent": true
},
"db:migrate": {
"cache": false,
"persistent": true
},
"db:seed": {
"cache": false,
"persistent": true
},
"db:studio": {
"cache": false,
"persistent": true
},
"typecheck": {
"cache": false,
"persistent": true
},
"test": {
"cache": false,
"persistent": true
},
"coverage": {
"cache": false,
"persistent": true,
"outputs": ["coverage/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"e2e": {
"cache": false,
"persistent": true
},
"e2e:ui": {
"cache": false,
"persistent": true
}
}
}