Skip to content

Deploying to Heroku

Adam Ginsburg edited this page May 15, 2015 · 2 revisions

We can run our application on heroku!

heroku create
heroku ps:scale web=1
heroku config:set GITHUB_PASSWORD=
heroku logs
git push -u heroku {{local branch}}:master

for debugging the server locally:

foreman start
gunicorn --log-level=DEBUG upload_form:app

other things... just read the heroku deployment docs and obviously get an account.