Change web demo local port to 8765 to avoid colliding with Jupyter

This commit is contained in:
Emil Ernerfeldt 2024-06-27 22:20:41 +02:00
parent a0f4fafb88
commit f50e64632e
4 changed files with 6 additions and 6 deletions

View File

@ -66,7 +66,7 @@ Make a PR to add it as a link to [`README.md`](README.md#integrations) so others
## Testing the web viewer
* Build with `scripts/build_demo_web.sh`
* Host with `scripts/start_server.sh`
* Open <http://localhost:8888/index.html>
* Open <http://localhost:8765/index.html>
## Code Style

View File

@ -122,12 +122,12 @@ echo "Finished ${FINAL_WASM_PATH}"
if [[ "${OPEN}" == true ]]; then
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
# Linux, ex: Fedora
xdg-open http://localhost:8888/index.html
xdg-open http://localhost:8765/index.html
elif [[ "$OSTYPE" == "msys" ]]; then
# Windows
start http://localhost:8888/index.html
start http://localhost:8765/index.html
else
# Darwin/MacOS, or something else
open http://localhost:8888/index.html
open http://localhost:8765/index.html
fi
fi

View File

@ -6,7 +6,7 @@ cd "$script_path/.."
# Starts a local web-server that serves the contents of the `doc/` folder,
# i.e. the web-version of `egui_demo_app`.
PORT=8888
PORT=8765
echo "ensuring basic-http-server is installed…"
cargo install basic-http-server

View File

@ -3,7 +3,7 @@ This folder contains the files required for the egui web demo hosted at <https:/
## Testing locally
* Build with `scripts/build_demo_web.sh`
* Host with `scripts/start_server.sh`
* Open <http://localhost:8888/index.html>
* Open <http://localhost:8765/index.html>
## Deploying egui.rs
Each merge into `master` will trigger a new deploy