2022-01-23 11:55:27 -08:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
2024-10-27 09:58:42 -06:00
|
|
|
if [[ "$1" == "production" ]]; then
|
|
|
|
hugo server \
|
|
|
|
--buildFuture \
|
|
|
|
--noHTTPCache \
|
|
|
|
--enableGitInfo \
|
|
|
|
--environment production
|
|
|
|
else
|
|
|
|
hugo server --buildDrafts --buildFuture --noHTTPCache --enableGitInfo
|
|
|
|
fi
|