diff --git a/app.py b/api.py similarity index 100% rename from app.py rename to api.py diff --git a/run.py b/run.py new file mode 100644 index 0000000..9d7e374 --- /dev/null +++ b/run.py @@ -0,0 +1,4 @@ +from api import app + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=9999)