new task for Inital setup Python Backend

This commit is contained in:
Orce MARINKOVSKI 2024-12-22 22:07:02 +00:00
parent 32aa9f3e80
commit 2874d81b61

View File

@ -131,6 +131,24 @@
"options": { "options": {
"cwd": "${workspaceFolder}/src" "cwd": "${workspaceFolder}/src"
} }
},
{
"label": "Inital setup Python Backend (migrate and createsuperuser)",
"type": "shell",
"command": "pipenv run python manage.py migrate && pipenv run python manage.py createsuperuser",
"group": "none",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": false,
"clear": true,
"revealProblems": "onProblem"
},
"options": {
"cwd": "${workspaceFolder}/src"
}
} }
] ]
} }