Skip to content

Commit

Permalink
add deploy instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
pwjablonski committed Nov 29, 2018
1 parent 23074dd commit 43e7fc4
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Goal: Set up your project and view the live running app.
[] Add, commit, and push your changes
[] to set up your app, in your terminal type `npm install`
[] to run your app, in your terminal type `npm start` this runs the app in the development mode. Then open [http://localhost:3000](http://localhost:3000) to view it in the browser.
[] Make your site live on gh-pages
[] Use your planning sheet to create a your component layout.

====
Expand Down Expand Up @@ -85,7 +84,21 @@ Goal: Set up your your components
### Day 6 Reacting to User Input


### Day 7 Dynamic Redering
### Day 7
[] Make your site live on gh-pages
[] npm install gh-pages --save-dev
[] open your package.json file and add both of these
```
"homepage": "http://gitname.github.io/react-gh-pages"
```
```
"scripts": {
//...
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
```
[] npm run deploy


### Day 8 Work Day
Expand Down

0 comments on commit 43e7fc4

Please sign in to comment.