From fad403b2c0a6f60d775834803da53e0fb64d488a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Fri, 15 Jul 2022 23:08:53 +0200 Subject: [PATCH] Add reloading, change port and move Uploads folder --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 24324ce..57e766b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,10 +9,10 @@ "type": "python", "request": "launch", "module": "uvicorn", - "args": ["discord_embed.main:app"], + "args": ["discord_embed.main:app", "--reload", "--port", "5000"], "env": { - "DOMAIN": "http://127.0.0.1:8000/", - "UPLOAD_FOLDER": "uploads" + "DOMAIN": "http://127.0.0.1:5000/", + "UPLOAD_FOLDER": "./Uploads" }, "jinja": true }