Last active
          September 16, 2022 08:58 
        
      - 
      
- 
        Save arif-m150/a34b55b440172659cd73ee64b8a55df9 to your computer and use it in GitHub Desktop. 
    Config debug Odoo in Visual Studio Code
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| // 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