To deploy to staging or production, you need to be a core member of the Open Collective team.
npm install -g heroku
heroku login
Setting a Slack webhook will post a message on #deployments
channel with the changes you're about to deploy. It is not required, but you can activate it as folows.
Contact another core team member to ask them for the link or, if you have admins permission on it, go to https://api.slack.com/apps/A017TDR2R61/incoming-webhooks and copy the link for #deployments
channel.
Finally add this link to your .env
file:
OC_SLACK_DEPLOY_WEBHOOK=<link-url>
# Before first deployment, configure staging remote
git remote add staging https://git.heroku.com/oc-staging-frontend.git
# Then deploy main with
npm run deploy:staging
URL: https://staging.opencollective.com/
# Before first deployment, configure production remote
git remote add production https://git.heroku.com/oc-prod-frontend.git
# Then deploy main with
npm run deploy:production
URL: https://opencollective.com/
If something goes wrong, you can easily rollback the deployment with the following commands.
heroku releases --app oc-prod-frontend
Note: For staging it will be, heroku releases --app oc-staging-frontend
This will give an output of all the Heroku releases. Something like,
=== opencollective-prod-api Releases - Current: v1574
v1574 Dep… [email protected] 2021/07/21 11:09:08 -0700 (~ 26m ago)
v1573 Dep… [email protected] 2021/07/16 10:11:50 -0700
v1572 Dep… [email protected] 2021/07/15 08:23:19 -0700
v1571 Dep… [email protected] 2021/07/14 09:27:05 -0700
v1570 Dep… [email protected] 2021/07/13 18:08:05 -0700
Now to rollback the latest deployment all you got to do is:
heroku rollback v1574 --app oc-prod-frontend
Note: For staging it will be, heroku rollback v1574 --app oc-staging-frontend
For more info refer to: https://blog.heroku.com/releases-and-rollbacks and https://devcenter.heroku.com/articles/releases#rollback