flask server Application failed to respond
locally everything is fine on railway: Application failed to respond
Solution:Jump to solution
You're running a development server, you'll want to use gunicorn to run your server.
to do that, add
gunicorn
to requirements.txt
your start command would look something like this gunicorn main:app
...6 Replies
Project ID:
N/A
deploy logs please - https://bookmarklets.up.railway.app/log-downloader/
Solution
You're running a development server, you'll want to use gunicorn to run your server.
to do that, add
gunicorn
to requirements.txt
your start command would look something like this gunicorn main:app
worked ty
no prob