Files
carmanagement/turbo.json
T
root 5f06256271
Build & Push / Pipeline Tests (push) Failing after 1m58s
Build & Push / Build & Push Docker Image (push) Has been skipped
Test / Type Check (all packages) (push) Successful in 58s
Test / API Unit Tests (push) Successful in 1m9s
Test / Homepage Unit Tests (push) Successful in 46s
Test / Carplace Unit Tests (push) Successful in 43s
Test / Admin Unit Tests (push) Successful in 41s
Test / Dashboard Unit Tests (push) Successful in 45s
Test / API Integration Tests (push) Failing after 1m9s
fix billing and 2fa admin
2026-08-10 22:35:55 -04:00

50 lines
978 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalPassThroughEnv": [
"ADMIN_SEED_EMAIL",
"ADMIN_SEED_FIRST_NAME",
"ADMIN_SEED_LAST_NAME",
"ADMIN_SEED_PASSWORD",
"DATABASE_URL",
"DATABASE_URL_FROM_POSTGRES",
"POSTGRES_DB",
"POSTGRES_HOST",
"POSTGRES_HOST_LOCAL",
"POSTGRES_PASSWORD",
"POSTGRES_PORT",
"POSTGRES_USER",
"SITE_ORIGIN",
"NEXT_PUBLIC_HOMEPAGE_URL",
"NEXT_PUBLIC_CARPLACE_URL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"outputs": []
},
"type-check": {
"outputs": []
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:seed": {
"cache": false
}
}
}