-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathturbo.json
More file actions
87 lines (87 loc) · 1.82 KB
/
Copy pathturbo.json
File metadata and controls
87 lines (87 loc) · 1.82 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",
"globalDependencies": [
"rust/**/*.rs",
"rust/**/Cargo.toml",
"Cargo.toml",
"Cargo.lock",
"rust-toolchain.toml",
"scripts/build-wasm.sh"
],
"globalPassThroughEnv": [
"RUSTUP_HOME",
"CARGO_HOME",
"RUSTUP_TOOLCHAIN",
"RUSTFLAGS",
"CARGO_TARGET_DIR",
"OPENROUTER_API_KEY",
"LLM_API_KEY",
"LLM_API_BASE",
"LLM_FREE_DAILY_LIMIT",
"APP_URL",
"POSTGRES_URL",
"DATABASE_URL",
"POSTGRES_DATABASE",
"NEON_PROJECT_ID",
"PGDATABASE",
"POSTGRES_PASSWORD",
"POSTGRES_URL_NO_SSL",
"PGHOST",
"POSTGRES_PRISMA_URL",
"PGPASSWORD",
"POSTGRES_USER",
"POSTGRES_HOST",
"DATABASE_URL_UNPOOLED",
"PGUSER",
"POSTGRES_URL_NON_POOLING",
"PGHOST_UNPOOLED",
"LLM_FREE_MODELS",
"LLM_IMAGE_MODELS",
"LLM_FILE_ATTACHMENT_MODELS"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "pkg/**"],
"inputs": [
"$TURBO_DEFAULT$",
"src/**",
"scripts/**",
"package.json",
"tsconfig.json",
"tsconfig.*.json",
"vite.config.ts",
"index.html"
],
"env": [
"VITE_SERVER_URL",
"VITE_IFC_SERVER_URL",
"VITE_USE_SERVER",
"VITE_LLM_FREE_MODELS",
"VITE_LLM_IMAGE_MODELS",
"VITE_LLM_FILE_ATTACHMENT_MODELS",
"VITE_POSTHOG_KEY",
"VITE_POSTHOG_HOST",
"VITE_SOURCEMAP",
"VERCEL_GIT_COMMIT_SHA",
"GITHUB_SHA"
]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"cache": false
},
"lint": {
"dependsOn": ["build"],
"cache": false
}
}
}