-
Notifications
You must be signed in to change notification settings - Fork 0
/
gohugo.sh
executable file
·40 lines (34 loc) · 920 Bytes
/
gohugo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env sh
# Rafael Dutra <[email protected]>
# https://rafaeldutra.me
# -p para Publish (publicar conteúdo), ou seja, pega todos arquivos .md e
# transforma para HTML
config=$2
if [ ! -z "${config}" ]; then
hugoConfig="--config /src/config.toml,/src/${config}"
else
hugoConfig="--config /src/config.toml"
fi
if [ "${1}" = "-p" ]; then
hugo \
$hugoConfig \
--layoutDir /src/layouts \
--themesDir /src/themes \
--contentDir /src/content \
--ignoreCache \
--destination /src/public
# -s para Server (rodar servidor)
elif [ "${1}" = "-s" ]; then
hugo server \
$hugoConfig \
--watch true \
--bind 0.0.0.0 \
--layoutDir /src/layouts \
--themesDir /src/themes \
--contentDir /src/content \
--ignoreCache \
--appendPort false \
--baseURL ${BASEURL}
fi
# Apenas informação para você saber em qual URL está rodando
echo $BASEURL