My app's specs:

Errors and Solutions

ERROR

Installed Heroku?

MEANS

CAUSE

FIX

Type heroku --version in terminal to check


Installed correct version of Python?


Installed dependencies to support Heroku integration

Put gunicorn, psycopg2 in requirement.txt


Procfile is correct


H14 – No web dynos running

Heroku can't recognize your app from Github repo. Check Overview> Dyno formation>"There is no process type"


Scaling dynos... ! ▸ Invalid credentials provided. heroku: Press any key to open up the browser to login or q to exit: › Error: quit ▸ Command failed: heroku login

heroku ps:scale web=1 --app <app-name-registered-in-Heroku> failed

Heroku account and app haven't connected

Run heroku login to login on browser Or Run heroku login -i to log in Heroku from Terminal


Missing required flag: -a, --app APP app to run command against

heroku ps:scale or heroku ps:scale web=1 or heroku ps:scale web=2 or heroku ps failed

heroku ps to start the app’s web server(s)

Heroku account and app haven't connected

Run heroku login to login on browser