teleport/docs/run.sh
Ben Arent b0b7263296
Updated mkdocs base image used in Docs (#3314)
* WIP to update MkDocs base theme.
2020-02-04 15:58:15 -08:00

14 lines
368 B
Bash
Executable file

#!/bin/bash
# IMPORTANT! To add a new version, say 8.1
# * copy 2.3.yaml to 8.1.yaml
# * edit 8.1.yaml
# * edit theme/base.html and update docVersions variable
PORT=6600
cd $(dirname $0)
./build.sh || exit $?
echo -e "\n\n----> LIVE EDIT HERE: http://localhost:$PORT/"
mkdocs serve --livereload --config-file=latest.yaml --dev-addr=0.0.0.0:$PORT & wait