blob: a258c9dd55e52faa96da56ef79c9407f884e2e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
# grab latest
git pull
# setup gninx
cp ./nginx/homepage.conf /etc/nginx/sites-enabled/homepage.conf
mkdir /var/www/homepage/
# build and sync zola
(cd zola-static && zola build)
rsync -av --delete ./zola-static/public/ /var/www/homepage/
# sync interactive
rsync -av --delete ./interactive/ /var/www/interactive/
|