pkmntrade.club/.vscode/tasks.json

29 lines
No EOL
614 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Reset DB, Make Migrations, And Seed Data",
"type": "shell",
"command": "./reset-db_make-migrations_seed-data.sh",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Run app",
"type": "shell",
"command": "./entrypoint.sh",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
}
]
}