Skip to content Skip to sidebar Skip to footer

Serve A Bottle Application From Gunicorn On Heroku?

Procfile web: python server.py server.py from os import environ from bottle import app, route, run, static_file @route('/') def root(): return 'Hello world!' if __name__ ==

Solution 1:

First of all: Are you certain that those are all of the necessary requirements?

If they are, are you sure you have any dynos allocated? What's the result of heroku ps? H14 is listed as usually being caused by having no dynos set to run your app.

You can set it to use one web dyno with heroku ps:scale web=1.

Post a Comment for "Serve A Bottle Application From Gunicorn On Heroku?"