Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating documentation for ticket #11443 #12153

Merged
merged 4 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
19 changes: 15 additions & 4 deletions Documentation/Contributors/BuildGuide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

---

Expand Down Expand Up @@ -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
Expand Down