diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 5ffba76b8eba..473b80fe3d00 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,6 +5,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu ## [Corporate CLA](Documentation/Contributors/CLAs/corporate-contributor-license-agreement-v1.0.pdf) - [Analytical Graphics, Inc.](http://www.agi.com/) + - [Korey Hines](https://github.com/devkthines) - [Patrick Cozzi](https://github.com/pjcozzi) - [Kristian Calhoun](https://github.com/kristiancalhoun) - [Kevin Ring](https://github.com/kring) diff --git a/Documentation/Contributors/BuildGuide/README.md b/Documentation/Contributors/BuildGuide/README.md index df4fa912da65..1c3075bf371e 100644 --- a/Documentation/Contributors/BuildGuide/README.md +++ b/Documentation/Contributors/BuildGuide/README.md @@ -21,13 +21,19 @@ npm install ``` -3. Start the [server](#development-server) +3. Build the project + + ```bash + npm run build + ``` + +4. Start the [server](#development-server) ```bash npm start ``` -4. Navigate to : [`http://localhost:8080/`](http://localhost:8080) +5. Navigate to : [`http://localhost:8080/`](http://localhost:8080) --- @@ -61,8 +67,13 @@ Cesium uses [npm modules](https://docs.npmjs.com/getting-started/what-is-npm) fo npm install ``` -Cesium ships with a simple HTTP server for testing. -Once all modules have been installed, run `npm start` to use it: +Cesium ships with a simple HTTP server for testing. Once all modules have been installed, run `npm run build` to build the project: + +```bash +npm run build +``` + +Then, run the development server: ```bash npm start