Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 751 Bytes

DEPLOYMENT.md

File metadata and controls

33 lines (18 loc) · 751 Bytes

Deployment

Host on Heroku. Integrated with GitHub.

Review Apps

Pull Request will automatically spawns up a new review app.

Deploy to Staging

git push staging master

Deploy a Feature Branch to Staging

Suppose feature branch name: feature/awesome

git push staging feature/awesome:master

Deploy to Production

git push production master

For more information, please refer to Heroku Docs.

Rollback

heroku releases # show history of releases

heroku rollback v10 # rollback to version 10

For more information, please refer to Releases and Rollback.