feat(vscode): configure dev server port to 8110 in launch.json

Updated VSCode launch configuration to explicitly set the Django development server to run on port 8110. This ensures consistency across different development environments and resolves conflicts with default ports.
This commit is contained in:
Kumi 2024-07-12 10:46:50 +02:00
parent 5e202ac58d
commit 928cd4a3d0
Signed by: kumi
GPG key ID: ECBCC9082395383F

3
.vscode/launch.json vendored
View file

@ -9,7 +9,8 @@
"type": "debugpy",
"request": "launch",
"args": [
"runserver"
"runserver",
"8110",
],
"django": true,
"autoStartBrowser": false,