Files
twitch-drop-notifier/.vscode/tasks.json

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"
]
}
]
}