Skip to content

Instantly share code, notes, and snippets.

@JRSalasM
Created September 12, 2020 01:24
Show Gist options
  • Save JRSalasM/1a7c480a3976e946da098e76e92fbd32 to your computer and use it in GitHub Desktop.
Save JRSalasM/1a7c480a3976e946da098e76e92fbd32 to your computer and use it in GitHub Desktop.
Odoo - Configuración para vscode
// C:\\Users\\JRSalasM\\AppData\\Local\\Programs\\Python\\Python37-32\\python.exe
{
// 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": "Python: Odoo",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${command:python.interpreterPath}",
// "console": "externalTerminal",
"program": "${workspaceRoot}\\odoo-bin",
"args": [
"--config=${workspaceRoot}\\odoo_community.conf",
"-d planillas_production",
"-u factiva_planillas"
],
"cwd": "${workspaceRoot}",
"env": {},
"envFile": "${workspaceRoot}/.env",
"debugOptions": [
"RedirectOutput"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment