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.
|
- #!/bin/sh
-
- THEME_PATH=themes/after-dark
-
- echo "Starting help server ..."
- kill $(ps aux | awk '/[h]ugo.*1414/ {print $2}') 2>/dev/null
- cd "$THEME_PATH"/docs && hugo serve --disableLiveReload --port 1414 1>/dev/null &
- echo "Help server started at http://localhost:1414/"
- echo "To stop it run \"kill \$(ps aux | awk '/[h]ugo.*1414/ {print \$2}')\"."
- echo "To start it again run \"./themes/after-dark/bin/help\"."
|