-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathturbo.json
More file actions
128 lines (128 loc) · 2.48 KB
/
Copy pathturbo.json
File metadata and controls
128 lines (128 loc) · 2.48 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"$schema": "https://v2-10-7.turborepo.dev/schema.json",
"ui": "stream",
"boundaries": {
"dependencies": {
"deny": ["web", "server"]
},
"implicitDependencies": [
"vitest",
"@testing-library/jest-dom",
"@testing-library/react",
"@testing-library/user-event"
],
"tags": {
"app:server": {
"dependencies": {
"deny": ["app:web", "runtime:browser"]
}
},
"runtime:server": {
"dependencies": {
"deny": ["app:web", "runtime:browser"]
}
},
"runtime:browser": {
"dependencies": {
"deny": ["app:server", "runtime:server"]
}
},
"runtime:universal": {
"dependencies": {
"deny": ["app:web", "app:server", "runtime:server"]
}
},
"role:domain": {
"dependencies": {
"deny": ["app:web", "app:server", "role:adapter", "role:infra"]
}
},
"role:ui": {
"dependencies": {
"deny": ["app:web", "app:server", "runtime:server", "role:infra"]
}
}
}
},
"globalEnv": [
"PORT",
"SERVER_PORT",
"APP_URL",
"DATABASE_URL",
"AUTH_SECRET",
"BETTER_AUTH_API_KEY",
"BETTER_AUTH_INTERNAL_URL",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"LINKEDIN_CLIENT_ID",
"LINKEDIN_CLIENT_SECRET",
"OAUTH_PROVIDER_NAME",
"OAUTH_CLIENT_ID",
"OAUTH_CLIENT_SECRET",
"OAUTH_DISCOVERY_URL",
"OAUTH_AUTHORIZATION_URL",
"OAUTH_TOKEN_URL",
"OAUTH_USER_INFO_URL",
"OAUTH_SCOPES",
"SMTP_HOST",
"SMTP_PORT",
"SMTP_USER",
"SMTP_PASS",
"SMTP_FROM",
"SMTP_SECURE",
"LOCAL_STORAGE_PATH",
"S3_ACCESS_KEY_ID",
"S3_SECRET_ACCESS_KEY",
"S3_REGION",
"S3_ENDPOINT",
"S3_BUCKET",
"S3_FORCE_PATH_STYLE",
"REDIS_URL",
"ENCRYPTION_SECRET",
"FLAG_DISABLE_SIGNUPS",
"FLAG_DISABLE_EMAIL_AUTH",
"FLAG_DISABLE_IMAGE_PROCESSING",
"FLAG_DISABLE_API_RATE_LIMIT",
"FLAG_SHOW_SPONSORS",
"FLAG_ALLOW_UNSAFE_OAUTH_REDIRECT_URI",
"FLAG_ALLOW_UNSAFE_AI_BASE_URL"
],
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", "$TURBO_ROOT$/.env*"],
"outputs": ["dist/**", ".vercel/**"]
},
"check": {},
"typecheck": {},
"test": {},
"test:coverage": {},
"test:ci": {},
"test:e2e": {
"cache": false
},
"test:agent": {},
"dev": {
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:studio": {
"cache": false,
"persistent": true
},
"lingui:extract": {
"cache": false
}
}
}