mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
34 lines
1.0 KiB
JSON
34 lines
1.0 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"
|
|
}
|
|
]
|
|
}
|
|
|