Skip to content

Deployment

Kirk Jackson edited this page Apr 26, 2018 · 2 revisions

Setup Heroku

  • Install Heroku Toolbelt
  • Login with heroku login
  • Set up remote branch for staging and call it "staging" git remote add staging https://git.heroku.com/aprendi-staging.git
  • Set up remote branch for production and call it "production" git remote add production https://git.heroku.com/aprendi.git

Push to Staging

  • Get latest changes git pull origin master
  • Push up to staging git push staging master

Heroku Dashboard: https://dashboard.heroku.com/apps/aprendi-staging

Push to Production

  • Get latest changes git pull origin master
  • Push up to staging git push production master

Heroku Dashboard: https://dashboard.heroku.com/apps/aprendi

Clone this wiki locally