diff --git a/src/api/README.md b/src/api/README.md index 3586388..550c67d 100644 --- a/src/api/README.md +++ b/src/api/README.md @@ -26,7 +26,7 @@ sse_pubKey = '< YOUR PUBLIC KEY FROM THE PUBLIC KEY PAIR >' To start the API, execute the following from inside the folder ``` -python ranchimallflo_api.py +python api_main.py ``` ## API HTTP Endpoints diff --git a/src/api/ranchimallflo_api.py b/src/api/api_main.py similarity index 100% rename from src/api/ranchimallflo_api.py rename to src/api/api_main.py diff --git a/src/api/wsgi.py b/src/api/wsgi.py index 025a73f..cf77f68 100644 --- a/src/api/wsgi.py +++ b/src/api/wsgi.py @@ -1,4 +1,4 @@ -from ranchimallflo_api import app +from api_main import app if __name__ == "__main__": app.run()