diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..bbde57d --- /dev/null +++ b/.vscode/launch.json @@ -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"] + } + ] +} \ No newline at end of file