quick-docs/preview.sh

19 lines
656 B
Bash
Raw Normal View History

2018-07-27 14:38:30 +00:00
#!/bin/sh
if [ "$(uname)" = "Darwin" ]; then
2018-07-27 14:38:30 +00:00
# Running on macOS.
# Let's assume that the user has the Docker CE installed
# which doesn't require a root password.
echo "The preview will be available at http://localhost:8080/"
docker run --rm -v "$(pwd):/antora:ro" -v "$(pwd)/nginx.conf:/etc/nginx/conf.d/default.conf:ro" -p 8080:80 nginx
2018-07-27 14:38:30 +00:00
elif [ "$(expr substr "$(uname -s)" 1 5)" = "Linux" ]; then
2018-07-27 14:38:30 +00:00
# Running on Linux.
2019-03-22 13:37:32 +00:00
# Fedora Workstation has python3 installed as a default, so using that
2018-07-27 14:38:30 +00:00
echo ""
2019-03-22 13:37:32 +00:00
echo "The preview is available at http://localhost:8080"
echo ""
cd ./public
python3 -m http.server 8080
2018-07-27 14:38:30 +00:00
fi