-
Notifications
You must be signed in to change notification settings - Fork 69
Deploying to Heroku
Sean Lip edited this page Mar 27, 2023
·
2 revisions
- Install heroku on your system using the official instructions.
- Do
heroku login
and follow the instructions. - Make sure you're in the oppiabot repository and do
heroku git:remote -a murmuring-castle-33250
. - Make sure you are on the master branch and pull the latest changes from upstream (
git pull upstream master
). - Do
git push heroku master
, or if it does not workgit push heroku master --force
(force is fine in this case as we want basically want the latest master deployed and do not care about what was deployed before).