teleport/docs/run.sh
2020-10-07 14:00:02 -03:00

14 lines
378 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)" || exit
./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