diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b1d755a --- /dev/null +++ b/.vscode/launch.json @@ -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" + ] + } ] +} \ No newline at end of file diff --git a/.vscode/nfu.code-workspace b/.vscode/nfu.code-workspace new file mode 100644 index 0000000..7e8d7a8 --- /dev/null +++ b/.vscode/nfu.code-workspace @@ -0,0 +1,11 @@ +{ + "folders": [ + { + "path": ".." + }, + { + "path": "../../../versions/16.0" + } + ], + "settings": {} +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..bfb137d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "odoo.version": "16.0", + "odoo.path": "${workspaceFolder}/../../versions/${config:odoo.version}/odoo", + "odoo.addons_path": "${config:odoo.path}/addons", +} \ No newline at end of file