Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>OdooBrowserNew to Visual Studio Code? Get it now.
OdooBrowser

OdooBrowser

MarcWimmerITE

|
964 installs
| (0) | Free
Browser Odoo Models, XmlIds
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Odoo-Browser

  • requires wodoo installed:
pip3 install wodoo

Debugging odoo

  • configure debugging port in /.odoo/settings
...
ODOO_PYTHON_DEBUG_PORT=5678
...
  • add .vscode/launch.json configuration to your project (pretty straight forward if you choose python attach to remote):

Dont forget to update the pathMappings!

{
	"configurations": [
		{
			"name": "Python: Remote Attach",
			"type": "python",
			"request": "attach",
			"connect": {
				"host": "localhost",
				"port": 5678
			},
			"pathMappings": [
				{
					"localRoot": "${workspaceFolder}",
					"remoteRoot": "/opt/src"
				}
			]
		}
	]
}``
  • start debugging the web container and wait for remote debugg:
odoo debug odoo
debug -w
  • now attach the debugger
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft