Files
twitch-drop-notifier/.vscode/tasks.json
Joakim Hellsén d6bcde555b
All checks were successful
Ruff / ruff (push) Successful in 10s
Add VSCode tasks for Django management commands
2025-04-13 13:46:14 +02:00

30 lines
711 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Django: Make migrations.",
"type": "shell",
"command": "uv run python manage.py makemigrations",
"problemMatcher": [
"$python"
]
},
{
"label": "Django: Migrate.",
"type": "shell",
"command": "uv run python manage.py migrate",
"problemMatcher": [
"$python"
]
},
{
"label": "Django: Run pytest.",
"type": "shell",
"command": "uv run pytest",
"problemMatcher": [
"$python"
]
}
]
}