Merge pull request #4 from bakeupboys/add_vscode_files

[add] VSCode config files
This commit is contained in:
madmooose 2024-06-25 21:43:46 +02:00 committed by GitHub
commit 34dfe34e4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 37 additions and 0 deletions

21
.vscode/launch.json vendored Normal file
View 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
View file

@ -0,0 +1,11 @@
{
"folders": [
{
"path": ".."
},
{
"path": "../../../versions/16.0"
}
],
"settings": {}
}

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"odoo.version": "16.0",
"odoo.path": "${workspaceFolder}/../../versions/${config:odoo.version}/odoo",
"odoo.addons_path": "${config:odoo.path}/addons",
}