Files
suite/.theia/launch.json
Jared Kipe 1ee5b14ebb Merge branch 'imp/15.0/payroll_2022' into '15.0'
imp/15.0/payroll_2022 into 15.0

See merge request hibou-io/hibou-odoo/suite!1275
2022-01-14 18:33:34 +00:00

78 lines
2.6 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Odoo: shell",
"type": "python",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-run.py",
"args": ["shell", "--no-xmlrpc"],
"console": "integratedTerminal"
},
{
"name": "Odoo: TEST 'sale'",
"type": "python",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-run.py",
"args": ["-i", "sale",
"-u", "sale",
"--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",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-run.py",
"args": [],
"console": "integratedTerminal"
},
{
"name": "Odoo: reload foreground server",
"type": "python",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-reload.py",
"args": [],
"console": "integratedTerminal"
},
{
"name": "Odoo: reload foreground server, Kill Others",
"type": "python",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-reload.py",
"args": ["KILL_OTHER"],
"console": "integratedTerminal"
}
]
}