forked from web/portal
20 lines
622 B
Bash
Executable File
20 lines
622 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Build site and deploy to remote via SSH
|
|
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
|
|
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
|
|
#set -o xtrace ## set -x : Print command traces before executing command
|
|
|
|
# clean up
|
|
rm -rf dist
|
|
|
|
# build
|
|
python3 ./build.py items_page_1.yml index.html
|
|
python3 ./build.py items_page_2.yml index2.html
|
|
|
|
# deploy
|
|
rsync -v --archive --delete dist/ \
|
|
ecg00-portal@ecg00.hostsharing.net:doms/my.ecogood.org/htdocs-ssl/
|
|
|
|
echo
|
|
echo Finished. See results at https://my.ecogood.org
|