publiccode.si/site/build/build.sh

34 lines
907 B
Bash
Raw Normal View History

#!/bin/bash
2017-09-07 17:43:54 +02:00
# Put all available languages here, except "en". Separated by spaces
2017-09-16 13:02:34 +02:00
TRANSLATIONS="ca de el fr it nl tr zh_tw"
basedir="${0%/*}/.."
cd "$basedir"
mode=$1
# Unite static and language-specific config files to a single file
2017-09-07 17:43:54 +02:00
for language in $TRANSLATIONS; do
languagefiles="$languagefiles languages/strings.$language.toml"
done
cat config-static.toml languages/strings.en.toml ${languagefiles} > config.toml
# Execute hugo buildrun
if [ "$mode" == "server" ]; then
hugo server
2017-09-12 09:59:04 +02:00
elif [ "$mode" == "syntax" ]; then
hugo
else
hugo
2017-09-12 09:56:30 +02:00
2017-09-14 21:13:44 +02:00
##
## After building the website, we set the AWS credentials and uplodad
## everything to our AWS s3 bucket.
##
#if [ -f /srv/cred/aws.sh ]; then
# . /srv/cred/aws.sh
# /usr/local/bin/aws configure set default.s3.max_concurrent_requests 2
# /usr/local/bin/aws s3 cp /usr/share/blog/public/ s3://aws-website-pmpc-soegm/ --recursive
#fi
fi