This commit is contained in:
Yhael S
2023-05-10 01:34:55 -05:00
parent be46ba8b75
commit 45d19223c7
7 changed files with 227 additions and 170 deletions

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Odoocker Debug",
"type": "python",
"request": "attach",
"host": "localhost",
"port": 8069,
"debugServer": 8071,
"justMyCode": false,
"pathMappings": [
{
"localRoot": "${workspaceFolder}/odoo/custom-addons",
"remoteRoot": "/usr/lib/python3/dist-packages/odoo/custom-addons"
},
{
"localRoot": "${workspaceFolder}/odoo/extra-addons",
"remoteRoot": "/usr/lib/python3/dist-packages/odoo/extra-addons"
},
// {
// "localRoot": "${workspaceFolder}/core/odoo",
// "remoteRoot": "/usr/bin/odoo"
// }
]
}
]
}