Files
MES_Core/.vscode/launch.json
ackFromRedmi cddbfeadde
All checks were successful
Deploy MES Core / deploy (push) Successful in 3m32s
Добавил превьюшки дхф и настройки сервера
2026-04-02 23:52:04 +03:00

20 lines
552 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Django: Runserver",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver"
],
"django": true,
"justMyCode": true,
// Это заставит сервер перезапускаться при изменении кода
"autoReload": {
"enable": true
}
}
]
}