From 2e50db236fa5d922bf18061140e497d6c5d0237c Mon Sep 17 00:00:00 2001 From: Medvedev Stanislav Date: Sun, 9 Jun 2024 22:17:30 +0300 Subject: =?UTF-8?q?client=5Fgeo=20=D0=BD=D0=B0=20html=20=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=86=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f85c840 --- /dev/null +++ b/.vscode/launch.json @@ -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": "uvicorn", + "type": "debugpy", + "request": "launch", + "module": "uvicorn", + "args": ["app.main:app", "--host", "0.0.0.0"], + "console": "integratedTerminal" + } + ] +} \ No newline at end of file -- cgit v1.2.3