Skip to content

Commit

Permalink
quick fix to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tmkelly28 committed Sep 15, 2017
1 parent f0c98ce commit 4e894de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ Ready to go world wide? Here's a guide to deployment!
3. `npm run deploy` - this will cause the following commands to happen in order:
- `git checkout -b deploy`: checks out a new branch called "deploy". Note that the name "deploy" here isn't magical, but it needs to match the name of the branch we specify when we push to our heroku remote.
- `webpack -p`: webpack will run in "production mode"
- `git add -f public/bundle.js public/bundle.js/map`: "force" add the otherwise gitignored build files
- `git commit --allow-empy -m 'Deploying'`: create a commit, even if nothing changed
- `git add -f public/bundle.js public/bundle.js.map`: "force" add the otherwise gitignored build files
- `git commit --allow-empty -m 'Deploying'`: create a commit, even if nothing changed
- `git push --force heroku deploy:master`: push your local "deploy" branch to the "master" branch on heroku
- `git checkout master`: return to your master branch
- `git branch -D deploy`: remove the deploy branch
Expand Down

0 comments on commit 4e894de

Please sign in to comment.