Skip to content

Deploy to Live Site

Abdullah Almsaeed edited this page Oct 4, 2017 · 1 revision

Deploy Via Git

  1. Merge new code to master (i.e., via pull request)
  2. From master branch on local machine:
npm run production

### Check that the site is functional before continuing!

git add .
git commit -m "commit message"
git push

# checkout the live branch and pull any changes from Github
git checkout live
git pull
git merge master
git push

# switch back to master
git checkout master
Clone this wiki locally