Files
django_wallet/.vscode/launch.json
2025-01-26 19:59:16 +01:00

22 lines
656 B
JSON

{
// Usare IntelliSense per informazioni sui possibili attributi.
// Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
// Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debugger Python: Django",
"type": "debugpy",
"request": "launch",
"args": [
"runserver",
"--noreload",
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}/manage.py"
}
]
}