Files
Zero/turbo.json
Dak Washbrook f90921e30c Remove unused 'interactive' flag from db:push script
The 'interactive' flag in the db:push script was unnecessary and has been removed for simplicity. This change ensures consistency across the configuration file and eliminates an unsupported parameter.
2025-04-26 21:32:27 -07:00

35 lines
612 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"envMode": "loose",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"dev": {
"dependsOn": ["db:studio"],
"persistent": true,
"cache": false
},
"start": {
"cache": false
},
"lint": {
"outputs": []
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:studio": {
"cache": false
}
}
}