pkmntrade.club/.vscode/tasks.json

35 lines
No EOL
889 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": "Run app & db (db in docker)",
"type": "shell",
"command": "./scripts/entrypoint.sh",
"problemMatcher": []
},
{
"label": "Run app & db (both in Docker)",
"type": "shell",
"command": "docker compose -f docker-compose_entire_app.yml up -d",
"problemMatcher": []
},
{
"label": "Run tailwind dev server",
"type": "shell",
"command": "cd theme/static_src && npm run dev",
"problemMatcher": [],
},
{
"label": "Run db",
"type": "shell",
"command": "docker compose -f docker-compose_db_only.yml up -d",
"problemMatcher": []
}
]
}