pkmntrade.club/.vscode/tasks.json

35 lines
No EOL
849 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Reset DB, Make Migrations, And Seed Data",
"type": "shell",
"command": "./scripts/reset-db_make-migrations_seed-data.sh",
"problemMatcher": []
},
{
"label": "Build & run app",
"type": "shell",
"command": "docker compose up --build",
"problemMatcher": []
},
{
"label": "Build & run app (no build cache)",
"type": "shell",
"command": "docker compose up --build --no-cache",
"problemMatcher": []
},
{
"label": "Run db standalone",
"type": "shell",
"command": "docker compose up -d db",
"problemMatcher": []
},
{
"label": "Run tailwind dev server",
"type": "shell",
"command": "cd theme/static_src && npm run dev",
"problemMatcher": [],
}
]
}