Add run config

This commit is contained in:
Marc Riera Irigoyen 2022-11-19 12:02:47 +01:00
parent 52a34383cc
commit 24f41f10fe
2 changed files with 17 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,5 +1,5 @@
__pycache__/
*.db
**/.vscode/
*/.vscode/
venv/
headers/

16
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// 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 main program",
"type": "python",
"request": "launch",
"program": "ddgo-converter/ddgo-converter.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}