mirror of https://github.com/buster-so/buster.git
51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"db:init": {
|
|
"cache": false,
|
|
"persistent": false,
|
|
"dependsOn": ["db:seed", "@buster-app/supabase#start"]
|
|
},
|
|
"db:migrate": {
|
|
"cache": false,
|
|
"persistent": false,
|
|
"dependsOn": ["@buster-app/supabase#start"]
|
|
},
|
|
"db:seed": {
|
|
"cache": false,
|
|
"persistent": false,
|
|
"dependsOn": ["db:migrate", "@buster-app/supabase#start"]
|
|
},
|
|
"db:dump": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"db:generate": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"db:push": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"db:studio": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"start": {
|
|
"cache": false,
|
|
"persistent": false,
|
|
"dependsOn": ["@buster-app/supabase#start", "db:migrate"]
|
|
}
|
|
}
|
|
}
|