fixed addon path

This commit is contained in:
Radu Macocian (admac)
2026-01-07 13:13:16 +01:00
parent cec3a9c81f
commit 4ccadac7fe
4 changed files with 26 additions and 21 deletions

View File

@@ -114,11 +114,14 @@ dap.configurations.python = {
pythonPath = function()
return "/home/admac/projects/odoo/venv/bin/python3"
end,
args = {
"--addons-path", "/home/admac/projects/odoo/enterprise/,/home/admac/projects/odoo/odoo/addons/",
"--dev", "all",
"-d", "viva-integration"
}
args = function()
local db_name = vim.fn.input('Odoo DB: ', 'master')
return {
"--addons-path", "/home/admac/projects/odoo/enterprise/,/home/admac/projects/odoo/odoo/addons/",
"--dev", "all",
"-d", db_name
}
end
}
}