forked from onecli/onecli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
106 lines (106 loc) · 2.47 KB
/
turbo.json
File metadata and controls
106 lines (106 loc) · 2.47 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
97
98
99
100
101
102
103
104
105
106
{
"$schema": "https://v2-7-6.turborepo.dev/schema.json",
"ui": "tui",
"globalEnv": ["NODE_ENV", "NEXT_PUBLIC_EDITION"],
"globalPassThroughEnv": [
"DATABASE_URL",
"NEXTAUTH_URL",
"NEXTAUTH_SECRET",
"NEXT_PUBLIC_COGNITO_USER_POOL_ID",
"NEXT_PUBLIC_COGNITO_CLIENT_ID",
"NEXT_PUBLIC_COGNITO_DOMAIN",
"AWS_REGION",
"NEXT_RUNTIME",
"STRIPE_SECRET_KEY",
"STRIPE_PRO_PRICE_ID",
"STRIPE_BIZ_PRICE_ID",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"OAUTH_ISSUER",
"OAUTH_JWKS_URL",
"OAUTH_AUTHORIZATION_URL",
"OAUTH_TOKEN_URL",
"OAUTH_USERINFO_URL",
"OAUTH_CLIENT_ID",
"OAUTH_CLIENT_SECRET",
"OAUTH_AUDIENCE",
"OAUTH_STATE_SECRET",
"NEXT_PUBLIC_APP_URL",
"SECRET_ENCRYPTION_KEY",
"HOME",
"GATEWAY_CA_PEM_FILE",
"GATEWAY_CA_CERT",
"KMS_KEY_ARN",
"API_BASE_URL",
"GATEWAY_BASE_URL",
"LOG_LEVEL",
"LOG_FORMAT",
"AUTH_MODE",
"MAILERCHECK_API_KEY",
"DISCORD_WEBHOOK_URL",
"ENVIRONMENT",
"RESEND_API_KEY",
"NEXT_PUBLIC_API_URL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"@onecli/gateway#build": {
"inputs": ["src/**", "Cargo.toml", "Cargo.lock"],
"outputs": ["target/release/**"]
},
"@onecli/gateway#dev": {
"cache": false,
"persistent": true,
"passThroughEnv": [
"EDITION",
"DATABASE_URL",
"SECRET_ENCRYPTION_KEY",
"KMS_KEY_ARN",
"AWS_REGION",
"REDIS_HOST",
"REDIS_PORT",
"REDIS_PASSWORD",
"REDIS_TLS",
"COGNITO_USER_POOL_ID",
"AUTH_MODE",
"OAUTH_ISSUER",
"OAUTH_AUDIENCE"
]
},
"@onecli/gateway#check": {
"inputs": ["src/**", "Cargo.toml"]
},
"@onecli/gateway#check-types": {
"inputs": ["src/**", "Cargo.toml", "Cargo.lock"],
"outputs": []
},
"@onecli/gateway#lint": {
"inputs": ["src/**", "Cargo.toml"],
"outputs": []
},
"lint": {
"dependsOn": ["^lint"]
},
"lint:fix": {
"dependsOn": ["^lint:fix"],
"cache": false
},
"check-types": {
"dependsOn": ["^build", "^check-types"]
},
"test": {
"cache": false
},
"@onecli/gateway#test": {
"inputs": ["src/**", "tests/**", "Cargo.toml", "Cargo.lock"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}