Created
June 1, 2025 21:46
-
-
Save ieski/10b94bb661e0cc244dbc802e69739317 to your computer and use it in GitHub Desktop.
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
Show hidden characters
{ | |
"folders": [ | |
{ | |
"path": "odoo" | |
}, | |
{ | |
"path": "quanimo_request" | |
}, | |
{ | |
"path": "quanimo_custom" | |
}, | |
{ | |
"path": "quanimo_hr" | |
}, | |
{ | |
"path": "quanimo_product" | |
}, | |
{ | |
"path": "quanimo_purchase" | |
}, | |
{ | |
"path": "quanimo_rspacific" | |
}, | |
{ | |
"path": "quanimo_rstek" | |
}, | |
{ | |
"path": "quanimo_sale" | |
}, | |
{ | |
"path": "quanimo_tools" | |
}, | |
{ | |
"path": "e_donusum" | |
}, | |
{ | |
"path": "e_donusum_mid" | |
}, | |
{ | |
"path": "e_donusum_pro" | |
} | |
], | |
"settings": { | |
"odooVersion": "16.0", | |
"python.languageServer": "None", | |
"python.defaultInterpreterPath": "./venv/bin/python", | |
"python.pythonPath": "./venv/bin/python", | |
"flake8.enabled": true, | |
"flake8.args": [ | |
"--disable=E501,E301,E302", | |
], | |
"editor.fontSize": 14, | |
"editor.formatOnType": true, | |
"editor.fontFamily": "'Fira Code'", | |
"editor.lineHeight": 1.5, | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.wordWrap": "on", | |
"editor.fontLigatures": true, | |
"editor.inlineSuggest.enabled": true, | |
"window.zoomLevel": 0.5, | |
"terminal.integrated.defaultProfile.linux": "bash", | |
"terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font Mono', 'monospace'", // Terminal fontu | |
}, | |
"launch": { | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Odoo: Run and Debug", | |
"type": "debugpy", | |
"request": "launch", | |
"stopOnEntry": false, | |
"cwd": "${workspaceFolder:odoo}", | |
"python": "../venv/bin/python", | |
"program": "./odoo-bin", | |
"args": [ | |
"--config=./odoo.conf", | |
"--dev=xml", | |
"--limit-time-real", "99999", | |
//"-d", "odoo-dev-16.0" | |
], | |
"env": { | |
//"GEVENT_SUPPORT": "True" | |
}, | |
"envFile": "${workspaceFolder}/venv", | |
"console": "integratedTerminal", | |
"justMyCode": false, | |
}, | |
{ | |
"name": "Odoo: Run Update and Install Addons", | |
"type": "debugpy", | |
"request": "launch", | |
"stopOnEntry": false, | |
"cwd": "${workspaceFolder:odoo}", | |
"python": "../venv/bin/python", | |
"program": "./odoo-bin", | |
"args": [ | |
"--config=./odoo.conf", | |
"--dev=xml", | |
"--limit-time-real", "99999", | |
"-d", "odoo-dev-16.0", | |
// "-i", "quanimo_custom", | |
//"-u", "all", | |
"--stop-after-init" | |
], | |
"env": { | |
//"GEVENT_SUPPORT": "True" | |
}, | |
"envFile": "${workspaceFolder}/venv", | |
"console": "integratedTerminal", | |
"justMyCode": false | |
}, | |
] | |
} | |
} |
Comments are disabled for this gist.