forked from trycompai/crm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
78 lines (77 loc) · 1.47 KB
/
Copy pathturbo.json
File metadata and controls
78 lines (77 loc) · 1.47 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
{
"$schema": "https://turborepo.dev/schema.json",
"ui": "tui",
"globalEnv": ["NODE_ENV"],
"globalPassThroughEnv": [
"DATABASE_URL",
"DATABASE_URL_UNPOOLED",
"TEST_DATABASE_URL",
"TEST_RUN_ID",
"BETTER_AUTH_SECRET",
"BETTER_AUTH_URL",
"ALLOWED_SIGN_IN",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"MICROSOFT_CLIENT_ID",
"MICROSOFT_CLIENT_SECRET",
"SLACK_CLIENT_ID",
"SLACK_CLIENT_SECRET",
"MICROSOFT_TENANT_ID",
"AUTH_COOKIE_DOMAIN",
"CRON_SECRET",
"REDIS_URL",
"CACHE_TTL_MS",
"PORT",
"PRISMA_LOG_QUERIES",
"PERPLEXITY_API_KEY",
"GITHUB_TOKEN",
"BLOB_READ_WRITE_TOKEN",
"AI_GATEWAY_API_KEY",
"VERCEL_OIDC_TOKEN",
"AGENT_URL",
"AGENT_BRIDGE_SECRET",
"CRM_TELEMETRY_DISABLED",
"DO_NOT_TRACK",
"VERCEL",
"VERCEL_GIT_COMMIT_SHA"
],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"env": ["API_URL", "APP_URL", "NEXT_PUBLIC_API_URL"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".next/**",
"!.next/cache/**",
"!.next/dev/**",
"dist/**",
".output/**"
]
},
"lint": {
"dependsOn": ["topo"]
},
"check-types": {
"dependsOn": ["topo", "^build"]
},
"test": {
"dependsOn": ["topo", "^build"]
},
"dev": {
"dependsOn": ["^dev:prepare"],
"cache": false,
"persistent": true
},
"dev:headless": {
"dependsOn": ["^dev:prepare"],
"cache": false,
"persistent": true
},
"dev:prepare": {
"cache": false
}
}
}