fix: update path to manage.py in VSCode launch config

Updated the VSCode launch.json configuration to point to the correct location of manage.py within the coffeemachine directory. This ensures that the debug setups work correctly with the current project structure.
This commit is contained in:
Kumi 2024-08-02 19:54:00 +02:00
parent 8b8795b0bd
commit 6b756e04bb
Signed by: kumi
GPG key ID: ECBCC9082395383F

2
.vscode/launch.json vendored
View file

@ -14,7 +14,7 @@
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}/manage.py"
"program": "${workspaceFolder}/coffeemachine/manage.py"
}
]
}