From 94fce4fd83d4e211913e846fb9be5dc3719638d2 Mon Sep 17 00:00:00 2001 From: Korey Hines <123342843+devkthines@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:39:12 -0700 Subject: [PATCH 1/3] updating documentation for ticket #11443 --- Documentation/Contributors/BuildGuide/README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Documentation/Contributors/BuildGuide/README.md b/Documentation/Contributors/BuildGuide/README.md index 3416af211f6e..006f98ad5700 100644 --- a/Documentation/Contributors/BuildGuide/README.md +++ b/Documentation/Contributors/BuildGuide/README.md @@ -21,14 +21,18 @@ ```bash npm install ``` +3. Build the project -3. Start the [server](#development-server) + ```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) --- @@ -62,8 +66,12 @@ 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 From 202fe472bf88751b05373a433c850021d8a6d814 Mon Sep 17 00:00:00 2001 From: Korey Hines <123342843+devkthines@users.noreply.github.com> Date: Tue, 27 Aug 2024 09:40:54 -0700 Subject: [PATCH 2/3] Update CONTRIBUTORS.md so the two branches are merged at the same time --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 934da94f7593..ddcf78bec21c 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) From 0957323d2969897611766f5c9c2c73685a2cf358 Mon Sep 17 00:00:00 2001 From: Korey Hines <123342843+devkthines@users.noreply.github.com> Date: Wed, 28 Aug 2024 23:47:08 -0700 Subject: [PATCH 3/3] fixing linting errors --- Documentation/Contributors/BuildGuide/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/Contributors/BuildGuide/README.md b/Documentation/Contributors/BuildGuide/README.md index 006f98ad5700..05f4510bc75f 100644 --- a/Documentation/Contributors/BuildGuide/README.md +++ b/Documentation/Contributors/BuildGuide/README.md @@ -21,11 +21,13 @@ ```bash npm install ``` + 3. Build the project ```bash npm run build ``` + 4. Start the [server](#development-server) ```bash @@ -71,6 +73,7 @@ Cesium ships with a simple HTTP server for testing. Once all modules have been i ```bash npm run build ``` + Then, run the development server: ```bash