12345678910111213141516171819202122232425262728 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "django-auto-migrate",
- "type": "shell",
- "command": "${command:python.interpreterPath}",
- "args": [
- "${workspaceFolder}/manage.py",
- "makemigrations",
- "--no-input",
- "&&",
- "${command:python.interpreterPath}",
- "${workspaceFolder}/manage.py",
- "migrate",
- "--no-input"
- ],
- "options": {
- "cwd": "${workspaceFolder}"
- },
- "problemMatcher": [],
- "presentation": {
- "reveal": "always",
- "panel": "dedicated"
- }
- }
- ]
- }
|