Files
odoocker/.vscode/launch.json
2023-08-25 02:08:56 -05:00

21 lines
519 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Odoocker Debugger",
"type": "python",
"request": "attach",
"host": "localhost",
"port": 8069,
"debugServer": 8070,
"justMyCode": false,
"pathMappings": [
{
"localRoot": "${workspaceFolder}/odoo",
"remoteRoot": "/usr/lib/python3/dist-packages/odoo"
}
]
}
]
}