Skip to content

Instantly share code, notes, and snippets.

@jhordybarrera
Created October 10, 2023 13:13
Show Gist options
  • Select an option

  • Save jhordybarrera/1acdf8e59e1fdd8a37b731cf68f63f51 to your computer and use it in GitHub Desktop.

Select an option

Save jhordybarrera/1acdf8e59e1fdd8a37b731cf68f63f51 to your computer and use it in GitHub Desktop.

Revisions

  1. jhordybarrera created this gist Oct 10, 2023.
    19 changes: 19 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    {
    "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}",
    }
    ]
    }