2023-09-14 16:09:49 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-05-19 19:30:45 +02:00
|
|
|
set -ex
|
2023-11-06 14:57:51 +01:00
|
|
|
|
2023-11-06 12:52:57 +01:00
|
|
|
rm -fr public
|
2024-03-21 22:32:47 +01:00
|
|
|
nix shell nixpkgs#zola nixpkgs#nodejs_20 -c sh -c 'zola build && npm install && npm run abridge'
|
2023-11-06 14:40:11 +01:00
|
|
|
find public -type f -regextype posix-extended -regex '.*\.(htm|html|css|js|xml|xsl|txt|woff|woff2|svg|otf|eot|ttf)' -exec gzip --best -k -f {} \;
|
2023-11-06 12:52:57 +01:00
|
|
|
rsync -a --delete-after public/ /var/www/harald.hoyer.xyz/html/
|
2023-09-14 16:09:49 +02:00
|
|
|
chmod go-w -R /var/www/harald.hoyer.xyz/
|