Files
bachelor_thesis_m.recommend/.vscode/launch.json
2020-05-04 10:49:59 +02:00

32 lines
1.1 KiB
JSON

{
// 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: app.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/app.py",
"console": "integratedTerminal",
"env": {"PYTHONPATH": "${workspaceRoot}/src/"}
},
{
"name": "Python: evaluation",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/eval.py",
"console": "integratedTerminal",
"env": {"PYTHONPATH": "${workspaceRoot}/"}
},
{
"name": "Python: visualization",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/vis.py",
"console": "integratedTerminal",
"env": {"PYTHONPATH": "${workspaceRoot}/"}
}
]
}