launch.json
2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
// Utilizar IntelliSense para aprender acerca de los posibles atributos.
// Mantenga el puntero para ver las descripciones de los existentes atributos
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python odoo 10 - Adrian",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
//"program": "${file}", use this to debug opened file.
"program": "/home/administrador/odoo10/odoo-bin",
"args": [
"-d hydra_adrian -u asw_hydra --dev=xml --db-filter=hydra_adrian --config=/home/administrador/config10",
],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"debugOptions": [
"RedirectOutput"
]
},
{
"name": "Python odoo 10 - Ramiro",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
//"program": "${file}", use this to debug opened file.
"program": "/home/ramiro/odoo10/odoo-bin",
"args": [
"-d hydra_ramiro -u asw_hydra --dev=xml --db-filter=hydra_ramiro --config=/home/ramiro/config10",
],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"debugOptions": [
"RedirectOutput"
]
},
{
"name": "Python odoo 10 - Nahuel",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
//"program": "${file}", use this to debug opened file.
"program": "/home/nahuel/odoo10/odoo-bin",
"args": [
"-d hydra_nahuel -u asw_hydra --dev=xml --db-filter=hydra_nahuel --config=/home/nahuel/config10",
],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"debugOptions": [
"RedirectOutput"
]
}
]
}