Skip to content

Instantly share code, notes, and snippets.

@jbarreraballestas
Created October 10, 2023 13:13
Show Gist options
  • Save jbarreraballestas/1acdf8e59e1fdd8a37b731cf68f63f51 to your computer and use it in GitHub Desktop.
Save jbarreraballestas/1acdf8e59e1fdd8a37b731cf68f63f51 to your computer and use it in GitHub Desktop.
run odoo vscode windows
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Odoo",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/odoo-bin",
"args": [
"-c",
"odoo.conf",
],
"console": "integratedTerminal",
"justMyCode": true,
"python": "${workspaceFolder}\\venv\\Scripts\\python.exe",
"cwd": "${workspaceFolder}",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment