[add] VSCode config files
This commit is contained in:
parent
bf4a8b954e
commit
c41c44a22d
3 changed files with 37 additions and 0 deletions
21
.vscode/launch.json
vendored
Normal file
21
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "odoo-dev-16.0",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd":"${workspaceRoot}",
|
||||
"program": "${config:odoo.path}/odoo-bin",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"--database=16-nfu",
|
||||
"--addons-path=${config:odoo.addons_path}",
|
||||
"--limit-time-real=0",
|
||||
"--limit-time-cpu=0",
|
||||
// "--init=",
|
||||
// "--update=",
|
||||
"--dev=xml"
|
||||
]
|
||||
} ]
|
||||
}
|
||||
11
.vscode/nfu.code-workspace
vendored
Normal file
11
.vscode/nfu.code-workspace
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": ".."
|
||||
},
|
||||
{
|
||||
"path": "../../../versions/16.0"
|
||||
}
|
||||
],
|
||||
"settings": {}
|
||||
}
|
||||
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"odoo.version": "16.0",
|
||||
"odoo.path": "${workspaceFolder}/../../versions/${config:odoo.version}/odoo",
|
||||
"odoo.addons_path": "${config:odoo.path}/addons",
|
||||
}
|
||||
Loading…
Reference in a new issue