Bob Kwiencien
Bob Kwiencien

Reputation: 1

heroku code=H14 when opening app

When I try yo open my app I get the following error:

2018-06-15T16:32:58.624559+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=bkwiencien.herokuapp.com request_id=81661f5c-c536-412f-bafb-fbc7ae4331

The app is merely some HTML and JavaScript.

Upvotes: 0

Views: 81

Answers (1)

Cjmarkham
Cjmarkham

Reputation: 9700

It means that you have no dynos running. As per the documentation, you will need to have at least 1 dyno running your app.

You can do so from the dashboard or Heroku CLI:

heroku ps:scale web=1

Upvotes: 1

Related Questions