From 0a9378a17611830c67b05e6bf1648381fd31b22a Mon Sep 17 00:00:00 2001 From: Cheap Nightbot <151442433+CheapNightbot@users.noreply.github.com> Date: Mon, 2 Sep 2024 18:25:50 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=A6=20Don't=20run=20debug=20server=20o?= =?UTF-8?q?n=20production=20!!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api.py b/api.py index 9b9c6c3..1bd4ac7 100644 --- a/api.py +++ b/api.py @@ -124,5 +124,4 @@ def docs(): if __name__ == "__main__": - # serve(app, host="0.0.0.0", port=8000) - app.run(debug=True) + serve(app, host="0.0.0.0", port=8000)