forked from vercel-labs/knowledge-agent-template
-
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.56 KB
/
turbo.json
File metadata and controls
66 lines (66 loc) · 1.56 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",
"tasks": {
"transit": {
"dependsOn": ["^transit"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env", ".env.*"],
"outputs": [".vercel/output/**", ".nuxt/**", ".output/**", "dist/**"],
"env": [
"NUXT_PUBLIC_GITHUB_BOT_TRIGGER",
"NUXT_GITHUB_TOKEN",
"NUXT_GITHUB_SNAPSHOT_REPO",
"NUXT_GITHUB_SNAPSHOT_BRANCH",
"NUXT_GITHUB_APP_ID",
"NUXT_GITHUB_APP_PRIVATE_KEY",
"NUXT_GITHUB_WEBHOOK_SECRET",
"NUXT_GITHUB_REPLY_TO_NEW_ISSUES",
"NUXT_DISCORD_BOT_TOKEN",
"NUXT_DISCORD_PUBLIC_KEY",
"NUXT_DISCORD_APPLICATION_ID",
"NUXT_DISCORD_MENTION_ROLE_IDS",
"NUXT_YOUTUBE_API_KEY",
"REDIS_URL",
"AI_GATEWAY_API_KEY",
"BETTER_AUTH_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"POSTGRES_URL",
"DATABASE_URL",
"BLOB_READ_WRITE_TOKEN",
"KV_URL",
"KV_REST_API_TOKEN",
"KV_REST_API_URL"
]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["transit"]
},
"lint:fix": {
"dependsOn": ["transit"]
},
"typecheck": {
"dependsOn": ["transit"]
},
"test": {
"dependsOn": ["^build"]
},
"sync:docs": {
"cache": false
},
"snapshot:create": {
"cache": false
},
"workflow:web": {
"cache": false,
"persistent": true
}
}
}