Skip to content

Commit

Permalink
chore: update tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
axelrindle committed Sep 14, 2024
1 parent 055e30c commit c93116a
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,20 @@
}
}
},
{
"label": "Migrate",
"type": "shell",
"command": "./artisan migrate",
"osx": {
"command": "php artisan migrate"
},
"problemMatcher": [],
"group": "none",
"presentation": {
"reveal": "always",
"panel": "shared",
}
},
{
"label": "Reset database",
"type": "shell",
Expand All @@ -138,7 +152,8 @@
"presentation": {
"reveal": "always",
"panel": "shared",
}
"focus": true,
},
},
{
"label": "Clear Cache",
Expand All @@ -154,5 +169,19 @@
"panel": "shared",
}
},
]
{
"label": "Gen API Client",
"type": "shell",
"command": "bash gen-api-client.sh",
"options": {
"cwd": "${workspaceFolder}/frontend"
},
"problemMatcher": [],
"group": "none",
"presentation": {
"reveal": "always",
"panel": "shared",
},
},
],
}

0 comments on commit c93116a

Please sign in to comment.