Files
zitadel/turbo.json

42 lines
783 B
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
"$schema": "https://turbo.build/schema.json",
2024-07-25 23:16:07 -04:00
"ui": "tui",
2024-08-12 11:31:18 +02:00
"globalDependencies": ["**/.env.*local"],
2024-07-25 23:16:07 -04:00
"globalEnv": [
"DEBUG",
2025-01-14 13:40:36 +01:00
"VERCEL_URL",
2024-12-19 09:08:18 +01:00
"EMAIL_VERIFICATION",
2025-01-30 09:15:32 +01:00
"AUDIENCE",
"SYSTEM_USER_ID",
"SYSTEM_USER_PRIVATE_KEY",
2025-01-14 13:40:36 +01:00
"ZITADEL_API_URL",
"ZITADEL_SERVICE_USER_TOKEN",
"NEXT_PUBLIC_BASE_PATH",
"CUSTOM_REQUEST_HEADERS"
2024-07-25 23:16:07 -04:00
],
"tasks": {
2023-06-20 11:55:15 +02:00
"generate": {
"cache": true
},
2023-06-23 15:31:09 +02:00
"build": {},
2025-02-12 13:51:43 +01:00
"build:standalone": {},
2023-06-16 01:36:19 +02:00
"test": {},
2024-10-16 12:34:53 +02:00
"start": {},
2024-10-19 01:16:59 +02:00
"start:built": {},
2023-06-16 01:36:19 +02:00
"test:unit": {},
"test:integration": {},
2023-06-20 14:30:42 +02:00
"test:watch": {
"persistent": true
},
2023-04-03 11:45:27 +02:00
"lint": {},
2023-06-16 01:36:19 +02:00
"lint:fix": {},
2023-06-20 11:55:15 +02:00
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
2024-07-25 23:16:07 -04:00
}
2023-08-02 10:25:39 +02:00
}