Skip to content

Commit

Permalink
add launch file to main
Browse files Browse the repository at this point in the history
  • Loading branch information
pergolafabio committed Oct 25, 2023
1 parent 2a75ae6 commit f61d50b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
// 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: main.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/hikvision-doorbell/src/main.py",
"cwd": "${workspaceFolder}/hikvision-doorbell",
"console": "integratedTerminal",
"justMyCode": true,
"envFile": "${workspaceFolder}/hikvision-doorbell/development.env"
},
{
"name": "Python: hik.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/hikvision-doorbell/src/hik.py",
"cwd": "${workspaceFolder}/hikvision-doorbell",
"console": "integratedTerminal",
"justMyCode": true,
"envFile": "${workspaceFolder}/hikvision-doorbell/development.env"
},
{
"name": "Python: debug tests",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}/hikvision-doorbell",
"justMyCode": false,
"envFile": "${workspaceFolder}/hikvision-doorbell/development.env",
"purpose": ["debug-test"]
}
]
}

0 comments on commit f61d50b

Please sign in to comment.