git clone git@github.com:DAVKronos/webserver-py.git
docker compose up --buildLaunch with development settings:
docker compose -f docker-compose.yml -f docker-compose.dev.yml upModify .vscode/launch.json so that it contains:
{
"name": "Debug Python",
"type": "debugpy",
"request": "attach",
"connect": {
"port": 5678,
"host": "localhost",
},
"justMyCode": false,
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app"
}
]
},Modify .vscode/launch.json so that it contains:
{
"type": "chrome",
"request": "launch",
"name": "Debug React",
"url": "http://localhost:8001",
"webRoot": "${workspaceFolder}/frontend/app"
},