diff --git a/.gitignore b/.gitignore index 8aaeb4a1..01a9bebc 100644 --- a/.gitignore +++ b/.gitignore @@ -115,6 +115,7 @@ ENV/ env.bak/ venv.bak/ .vscode +.idea # Spyder project settings .spyderproject diff --git a/.vscode/launch.json b/.vscode/launch.json index a32d4958..731268dd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,20 +1,28 @@ - { "version": "0.2.0", "configurations": [ + { + "name": "Python: Testing", + "type": "python", + "request": "launch", + "program": "${file}", + "purpose": ["debug-test"], + "console": "integratedTerminal", + "justMyCode": false + }, { "name": "Python: BStreamlit", "type": "python", "request": "launch", "module": "streamlit", "args": [ - "run", - "Home.py", - "--server.port", - "8080" + "run", + "Home.py", + "--server.port", + "8080" ], "cwd": "${workspaceFolder}/webinterface/", - "justMyCode":false + "justMyCode": false } ] } \ No newline at end of file