mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 03:03:24 +00:00
33 lines
636 B
JSON
33 lines
636 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"generate": {
|
|
"cache": true
|
|
},
|
|
"build": {
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
|
|
"dependsOn": ["generate", "^build"]
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"],
|
|
"dependsOn": []
|
|
},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"globalEnv": [
|
|
"ZITADEL_API_URL",
|
|
"ZITADEL_PROJECT_ID",
|
|
"ZITADEL_APP_ID",
|
|
"ZITADEL_SERVICE_USER_TOKEN",
|
|
"ZITADEL_ORG_ID"
|
|
]
|
|
}
|