-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
62 lines (62 loc) · 1.23 KB
/
turbo.json
File metadata and controls
62 lines (62 loc) · 1.23 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env", "**/.env.*"],
"globalEnv": [
"NODE_ENV",
"PORT",
"API_PORT",
"PANEL_PORT",
"FRONTEND_DOMAIN",
"FRONTEND_URL",
"API_URL",
"DATABASE_URL",
"REDIS_URL",
"BETTER_AUTH_URL",
"BETTER_AUTH_SECRET",
"ENCRYPTION_KEY",
"RAILWAY_API_URL",
"RAILWAY_ENVIRONMENT_ID",
"RAILWAY_PROJECT_ID",
"S3_ENDPOINT",
"S3_ACCESS_KEY_ID",
"S3_SECRET_ACCESS_KEY",
"S3_BUCKET_NAME",
"S3_REGION",
"S3_USE_SSL",
"S3_FORCE_PATH_STYLE",
"LOG_LEVEL",
"LOG_REQUESTS",
"DEFAULT_THEME",
"TIMEZONE"
],
"tasks": {
"build": {
"dependsOn": ["^build", "db:generate"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"check": {
"dependsOn": ["^build"]
},
"db:generate": {
"inputs": ["packages/database/prisma/schema.prisma"],
"outputs": ["generated/**"]
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:studio": {
"persistent": true,
"cache": false
},
"dev": {
"persistent": true,
"cache": false
},
"start": {
"dependsOn": ["build"]
}
}
}