forked from zmeyer44/Locker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
66 lines (66 loc) · 1.37 KB
/
Copy pathturbo.json
File metadata and controls
66 lines (66 loc) · 1.37 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env", "**/.env.*local"],
"globalPassThroughEnv": [
"DATABASE_URL",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"BLOB_STORAGE_PROVIDER",
"LOCAL_BLOB_DIR",
"AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY",
"AWS_REGION",
"S3_BUCKET",
"R2_ACCOUNT_ID",
"R2_ACCESS_KEY_ID",
"R2_SECRET_ACCESS_KEY",
"R2_BUCKET",
"R2_PUBLIC_URL",
"BLOB_READ_WRITE_TOKEN",
"NEXT_PUBLIC_APP_URL",
"NODE_ENV",
"RESEND_API_KEY",
"PLUGIN_ENCRYPTION_SECRET",
"MAX_FILE_SIZE",
"MAX_STORAGE_PER_USER",
"AI_GATEWAY_API_KEY",
"AI_GATEWAY_MODEL",
"QMD_SERVICE_URL",
"QMD_API_SECRET",
"LOCKER_RUNTIME_ENV",
"DOCKER_CONTAINER",
"RENDER_WORKFLOW_SLUG",
"RENDER_API_KEY",
"S3_API_KEY_ENCRYPTION_SECRET"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:seed": {
"cache": false
},
"test": {
"cache": false
}
}
}