From 8ad40e74ba5226608537dd5b8c7b9ca2f4afe735 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 7 Aug 2020 02:36:26 -0400 Subject: [PATCH] Merged dev and switched server to waitress for production --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 7cf154b..8bfb309 100644 --- a/main.py +++ b/main.py @@ -231,5 +231,5 @@ def test(): return jsonify(mangaInfo) if __name__ == "__main__": - app.run(host='0.0.0.0', debug=True) - #serve(app, host='0.0.0.0', port=8000) + #app.run(host='0.0.0.0', debug=True) + serve(app, host='0.0.0.0', port=8000)