-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathturbo.json
49 lines (49 loc) · 1.14 KB
/
turbo.json
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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "*.ts", "*.tsx", "package.json"]
},
"dev": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["@superglue/core#build"],
"outputs": []
},
"test:coverage": {
"dependsOn": ["@superglue/core#build"],
"outputs": ["coverage/**"]
}
},
"globalEnv": [
"GRAPHQL_ENDPOINT",
"GRAPHQL_PORT",
"WEB_PORT",
"DATASTORE_TYPE",
"REDIS_HOST",
"REDIS_PORT",
"REDIS_USERNAME",
"REDIS_PASSWORD",
"NODE_ENV",
"AUTH_TOKEN",
"DEBUG",
"MODEL_PROVIDER",
"FIREWORKS_API_KEY",
"FIREWORKS_MODEL",
"FIREWORKS_BASE_URL",
"OPENAI_API_KEY",
"OPENAI_API_BASE_URL",
"OPENAI_MODEL",
"NEXT_PUBLIC_SUPERGLUE_ENDPOINT",
"NEXT_PUBLIC_SUPERGLUE_API_KEY"
]
}