diff --git a/README.md b/README.md index cea892f..53421c6 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,6 @@ This requires a flowroute account. It uses google to authenticate. But I might a # App Server App runs via the following command. -> gunicorn3 app:app +> gunicorn3 smsproj:app This will run and listen on a port, probably port 8000 as its default as a daemon. diff --git a/smsproj.py b/smsproj.py index 7c29a4f..15c768c 100644 --- a/smsproj.py +++ b/smsproj.py @@ -233,6 +233,6 @@ def about(): if __name__ == '__main__': app.run( - host="127.0.0.1", + host="0.0.0.0", port=int("8890") )