-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathturbo.json
More file actions
87 lines (87 loc) · 1.83 KB
/
Copy pathturbo.json
File metadata and controls
87 lines (87 loc) · 1.83 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"DATABASE_URL",
"AUTH_SECRET",
"BLOB_READ_WRITE_TOKEN",
"AUTH_GOOGLE_ID",
"AUTH_GOOGLE_SECRET",
"AUTH_GITHUB_ID",
"AUTH_GITHUB_SECRET",
"VERCEL_APP_CLIENT_ID",
"VERCEL_APP_CLIENT_SECRET",
"AI_GATEWAY_API_KEY",
"VERCEL_OIDC_TOKEN",
"OPENROUTER_API_KEY",
"OPENAI_COMPATIBLE_BASE_URL",
"OPENAI_COMPATIBLE_API_KEY",
"OPENAI_API_KEY",
"CRON_SECRET",
"REDIS_URL",
"TAVILY_API_KEY",
"EXA_API_KEY",
"FIRECRAWL_API_KEY",
"MCP_ENCRYPTION_KEY",
"VERCEL_TEAM_ID",
"VERCEL_PROJECT_ID",
"VERCEL_TOKEN",
"VERCEL_SANDBOX_RUNTIME",
"APP_URL",
"VERCEL_URL"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**", "build/**"]
},
"format": {
"cache": false
},
"lint": {
"dependsOn": ["^lint"]
},
"test": {
"dependsOn": ["^test"],
"outputs": ["playwright-report/**", "test-results/**"]
},
"test:unit": {
"dependsOn": ["^test:unit"]
},
"test:types": {
"dependsOn": ["^test:types"]
},
"docs:links": {
"cache": false
},
"fetch:models": {
"cache": false
},
"test:e2e": {
"cache": false
},
"skiller:apply": {
"cache": false
},
"electron:build": {
"cache": true,
"inputs": ["src/**", "package.json", "tsconfig.json", "icon.png", "scripts/**"],
"outputs": ["dist/**", "build/**"]
},
"electron:dev": {
"cache": false,
"persistent": true
},
"electron:publish": {
"cache": false,
"dependsOn": ["electron:build"]
},
"electron:make": {
"cache": false,
"dependsOn": ["electron:build"]
}
}
}