-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathturbo.json
More file actions
96 lines (96 loc) · 2.06 KB
/
Copy pathturbo.json
File metadata and controls
96 lines (96 loc) · 2.06 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalPassThroughEnv": ["NODE_ENV"],
"globalEnv": [
"DATABASE_URL",
"DATABASE_URL_DIRECT",
"DATA_API_URL",
"DATA_API_TOKEN",
"OSSINSIGHT_URL",
"HTTP_TIMEOUT",
"JWT_SECRET",
"PRIVY_APP_ID",
"PRIVY_APP_SECRET",
"NEXT_PUBLIC_PRIVY_APP_ID",
"OPENROUTER_API_KEY",
"OPENROUTER_BASE_URL",
"OPENROUTER_MODEL",
"OPENAI_API_KEY",
"OPENAI_BASE_URL",
"OPENAI_MODEL",
"COPILOT_DATABASE_URL",
"COPILOT_DATABASE_WRITE_URL",
"RSSHUB_API_URL",
"TWITTER_API_URL",
"NEXT_PUBLIC_OPENBUILD_CLIENT_ID",
"NEXT_PUBLIC_UMAMI_WEBSITE_ID",
"NEXT_PUBLIC_UMAMI_URL",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"USE_REDIS_POOL",
"SKIP_ENV_VALIDATION",
"ALLOWED_ORIGINS",
"CRON_SECRET",
"INNGEST_SIGNING_KEY",
"INNGEST_EVENT_KEY",
"GITHUB_TOKENS",
"OPENBUILD_OAUTH_CLIENT",
"OPENBUILD_OAUTH_SECRET",
"LOG_LEVEL"
],
"globalDependencies": [".env*", ".nvmrc", "pnpm-workspace.yaml"],
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
},
"start:dev": {
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true,
"dependsOn": ["build"]
},
"start:prod": {
"cache": false,
"persistent": true,
"dependsOn": ["build"]
},
"lint": {
"outputs": []
},
"lint:fix": {
"cache": false
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"inputs": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"test/**/*.ts"
],
"outputs": ["coverage/**"]
},
"test:e2e": {
"dependsOn": ["^build"],
"cache": false
},
"clean": {
"cache": false
}
}
}