2023-10-30 14:58:04 +01:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Python: Current File",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2023-10-31 11:53:52 +01:00
|
|
|
"program": "src/main.py",
|
2023-10-30 14:58:04 +01:00
|
|
|
"envFile": "${workspaceFolder}/.env",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": true
|
2023-10-30 15:03:53 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Docker: Python - General",
|
|
|
|
"type": "docker",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "docker-run: debug",
|
|
|
|
"python": {
|
|
|
|
"pathMappings": [
|
|
|
|
{
|
|
|
|
"localRoot": "${workspaceFolder}",
|
|
|
|
"remoteRoot": "/app"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"projectType": "general"
|
|
|
|
}
|
2023-10-30 14:58:04 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|