From 1b3a8681237b2f617b49a8f051750f7a7080c730 Mon Sep 17 00:00:00 2001 From: silentoplayz <50341825+silentoplayz@users.noreply.github.com> Date: Fri, 24 May 2024 16:46:23 -0400 Subject: [PATCH] Added start.bat file for Windows --- start.bat | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 start.bat diff --git a/start.bat b/start.bat new file mode 100644 index 0000000..05c5795 --- /dev/null +++ b/start.bat @@ -0,0 +1,5 @@ +@echo off +set PORT=9099 +set HOST=0.0.0.0 + +uvicorn main:app --host %HOST% --port %PORT% --forwarded-allow-ips '*' \ No newline at end of file