Files
coolify-examples/turbo-t3-nextauth/turbo.json
Andras Bacsai 3d9050af4e asdf
2025-10-06 21:04:14 +02:00

29 lines
573 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"AUTH_SECRET",
"AUTH_DISCORD_ID",
"AUTH_DISCORD_SECRET",
"DATABASE_URL",
"SKIP_ENV_VALIDATION"
]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}