mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
496 B
16 lines
496 B
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
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`.
|
|
|
|
echo "ensuring basic-http-server is installed…"
|
|
cargo install basic-http-server
|
|
|
|
echo "starting server…"
|
|
echo "serving at http://localhost:8888"
|
|
|
|
(cd docs && basic-http-server --addr 127.0.0.1:8888 .)
|
|
# (cd docs && python3 -m http.server 8888 --bind 127.0.0.1)
|
|
|