From ffa1304f2bb55ad6dde4e4dd9beee423bb4dcb99 Mon Sep 17 00:00:00 2001 From: devamin Date: Sun, 4 Jun 2023 15:11:52 +0200 Subject: [PATCH] feat: vscode debuging settings --- .vscode/launch.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c58a7d5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // 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: streamlit", + "type": "python", + "request": "launch", + "module": "streamlit", + "args": [ + "run", + "main.py" + ], + "justMyCode": true + } + ] +} \ No newline at end of file