From 3ee936ea5e253a03a02f64cea931c0257fdccb03 Mon Sep 17 00:00:00 2001 From: Craig <121510295+CragglesG@users.noreply.github.com> Date: Tue, 12 Nov 2024 14:50:51 +0000 Subject: [PATCH] rename and fix bug --- main.py => shortener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename main.py => shortener.py (96%) diff --git a/main.py b/shortener.py similarity index 96% rename from main.py rename to shortener.py index 695f6f4..c9c8c9a 100644 --- a/main.py +++ b/shortener.py @@ -43,4 +43,4 @@ async def slug_only(slug: str): if __name__ == "__main__": import uvicorn - uvicorn.run(app) \ No newline at end of file + uvicorn.run(app, host="0.0.0.0", port=43599) \ No newline at end of file