diff --git a/.theia/launch.json b/.theia/launch.json index a43ff192..f048d49b 100644 --- a/.theia/launch.json +++ b/.theia/launch.json @@ -28,6 +28,26 @@ "--test-enable", "--no-xmlrpc", "--stop-after-init"], "console": "integratedTerminal" }, + { + "name": "Odoo: INIT 'hr_payroll_hibou'", + "type": "python", + "request": "launch", + "program": "/opt/odoo/hibou-suite/odoo-run.py", + "args": ["-i", "hr_payroll_hibou", + "-u", "hr_payroll_hibou", + "--stop-after-init"], + "console": "integratedTerminal" + }, + { + "name": "Odoo: TEST 'hr_payroll_hibou'", + "type": "python", + "request": "launch", + "program": "/opt/odoo/hibou-suite/odoo-run.py", + "args": ["-i", "hr_payroll_hibou", + "-u", "hr_payroll_hibou", + "--test-enable", "--no-xmlrpc", "--stop-after-init"], + "console": "integratedTerminal" + }, { "name": "Odoo: server", "type": "python", diff --git a/.theia/settings.json b/.theia/settings.json new file mode 100644 index 00000000..720fd1c4 --- /dev/null +++ b/.theia/settings.json @@ -0,0 +1,17 @@ +{ + "workbench.colorTheme": "Hibou Dark", + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + "**/*.pyc": {"when": "$(basename).py"}, + "**/__pycache__": true + }, + "files.watcherExclude": { + "**/.git/objects/**": true, + "**/.git/subtree-cache/**": true, + "**/node_modules/**": true + } +}