diff --git a/Procfile b/Procfile index 02a10c0..78aba44 100644 --- a/Procfile +++ b/Procfile @@ -1,2 +1,2 @@ -web: quart --app app run +web: python app.py diff --git a/app.py b/app.py index ef2890d..04daaf6 100644 --- a/app.py +++ b/app.py @@ -350,7 +350,7 @@ async def post_detail(title): if __name__ == "__main__": - app.run(debug=True) + app.run(debug=True , host="0.0.0.0" ,port="5000")