Skip to content

Commit

Permalink
use http-server
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Klebanoff committed Dec 1, 2017
1 parent c34f449 commit 2eaab1c
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,19 @@ Please make your commits in logical sections with clear commit messages.

##### Setting up dev environment

`npm install`

`npm run watch`
```
npm install
npm run watch
```

If you want to do a quick test with your modified code:
`python -m SimpleHTTPServer 9001`
Navigate to `http://localhost:9001/test.html`

```
npm install http-server -g
http-server .
```

Navigate to `http://localhost:8080/test.html`

When you are ready to put in your PR and want to update the `dist/` with a minified production-ready version, do `npm run production`

Expand Down

0 comments on commit 2eaab1c

Please sign in to comment.