Adds localhost:8000 to gatsby develop command (#24912)

Adds reference to localhost:8000 to gatsby develop command
pull/25182/head^2
John Albritton 2019-02-11 11:54:09 -06:00 committed by Randell Dawson
parent 84d227855f
commit be0c8e064d
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ Gatsby deploys the site on a static web host such as Amazon S3, Netlify, Github
* Node: `npm install --global gatsby-cli`
* Get started with the official Gatsby starter: `gatsby new gatsby-site https://github.com/gatsbyjs/gatsby-starter-default`
* After that change to the newly created directory `cd gatsby-site`
* `gatsby develop` starts a hot-reloading development server. The site will reload when changes in `src/pages` will be saved.
* `gatsby develop` starts a hot-reloading development server at `localhost:8000`. The site will reload when changes in `src/pages` will be saved.
* To generate the static HTML pages use `gatsby build`
* `gatsby serve` will start a local server that will present your built site.