forked from sand-worm-labs/sandworm-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
83 lines (83 loc) · 1.56 KB
/
turbo.json
File metadata and controls
83 lines (83 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"concurrency": "20",
"globalEnv": [
"NODE_ENV",
"APP_PORT",
"PORT",
"APP_NAME",
"APP_URL",
"APP_DEBUG",
"API_PREFIX",
"APP_FALLBACK_LANGUAGE",
"APP_LOG_LEVEL",
"APP_LOG_SERVICE",
"APP_CORS_ORIGIN",
"DATABASE_URL",
"DATABASE_HOST",
"DATABASE_PORT",
"DATABASE_PASSWORD",
"DATABASE_NAME",
"DATABASE_SCHEMA",
"DATABASE_USERNAME",
"DATABASE_LOGGING",
"DATABASE_SYNCHRONIZE",
"DATABASE_MAX_CONNECTIONS",
"DATABASE_SSL_ENABLED",
"DATABASE_REJECT_UNAUTHORIZED",
"DATABASE_CA",
"DATABASE_KEY",
"DATABASE_CERT",
"DEPLOY_MODE",
"JUPYTER_PROTOCOL",
"JUPYTER_HOST",
"JUPYTER_PORT",
"JUPYTER_TOKEN",
"REDIS_HOST",
"REDIS_PORT",
"REDIS_USERNAME",
"REDIS_PASSWORD",
"REDIS_DB",
"REDIS_URL"
],
"tasks": {
"clean": {
"cache": false
},
"build": {
"dependsOn": [
"^build"
],
"inputs": [
"$TURBO_DEFAULT$",
".env*"
],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**"
]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {},
"lint": {
"dependsOn": [
"^lint"
]
},
"test:e2e": {},
"@sandworm/postgresql-typeorm#migration:up": {
"cache": false
},
"@sandworm/postgresql-typeorm#migration:down": {
"cache": false
},
"@sandworm/postgresql-typeorm#migration:generate": {
"cache": false
}
}
}