Files
zitadel/turbo.json

41 lines
797 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",
"ZITADEL_API_URL",
"ZITADEL_SERVICE_USER_ID",
"ZITADEL_SERVICE_USER_TOKEN",
"ZITADEL_SYSTEM_API_URL",
"ZITADEL_SYSTEM_API_USERID",
"ZITADEL_SYSTEM_API_KEY",
"ZITADEL_ISSUER",
"ZITADEL_ADMIN_TOKEN",
2024-09-20 09:52:53 +02:00
"CACHE_REVALIDATION_INTERVAL_IN_SECONDS",
2024-07-25 23:16:07 -04:00
"VERCEL_URL"
],
"tasks": {
2023-06-20 11:55:15 +02:00
"generate": {
"cache": true
},
2023-06-23 15:31:09 +02:00
"build": {},
2023-06-16 01:36:19 +02:00
"test": {},
2024-10-16 12:34:53 +02:00
"start": {},
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
}