Skip to content

Instantly share code, notes, and snippets.

@arif-m150
Last active September 16, 2022 08:58
Show Gist options
  • Select an option

  • Save arif-m150/a34b55b440172659cd73ee64b8a55df9 to your computer and use it in GitHub Desktop.

Select an option

Save arif-m150/a34b55b440172659cd73ee64b8a55df9 to your computer and use it in GitHub Desktop.

Revisions

  1. arif-m150 renamed this gist Sep 16, 2022. 1 changed file with 0 additions and 0 deletions.
  2. arif-m150 renamed this gist Sep 14, 2022. 1 changed file with 0 additions and 0 deletions.
  3. arif-m150 created this gist Sep 13, 2022.
    22 changes: 22 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    {
    // 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"
    ]
    },
    ]
    }