Skip to content

Instantly share code, notes, and snippets.

@arif-m150
Last active September 16, 2022 08:58
Show Gist options
  • Save arif-m150/a34b55b440172659cd73ee64b8a55df9 to your computer and use it in GitHub Desktop.
Save arif-m150/a34b55b440172659cd73ee64b8a55df9 to your computer and use it in GitHub Desktop.
Config debug Odoo in Visual Studio Code
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run Odoo",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"console": "integratedTerminal",
"python": "/Documents/Development/ODOO/odoo-15/venv_py3810/bin/python3", //Lokasi File Python
"program": "/Documents/Development/ODOO/odoo-15/odoo-bin", // Lokasi File Odoo / odoo-bin
"args": [
"--config=/Documents/Development/ODOO/conf/dev_project.conf",
"--database=dev_database",
"--update=addons"
]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment