Files
zitadel/turbo.json

41 lines
742 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",
"globalDependencies": [
"**/.env.*local"
],
"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",
"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": {},
"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
}