43 lines
784 B
JSON
43 lines
784 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"globalEnv": [
|
|
"EMAIL_SERVER",
|
|
"EMAIL_FROM",
|
|
"SECRET",
|
|
"DATABASE_URL",
|
|
"NEXTAUTH_SECRET",
|
|
"LIVEKIT_API_KEY",
|
|
"LIVEKIT_API_SECRET",
|
|
"NEXTAUTH_HUB_SECRET",
|
|
"NEXTAUTH_COOKIE_PREFIX"
|
|
],
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"generate": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"migrate": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build", "generate"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": [],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|