cose matte
Find a file
2022-02-15 18:05:29 +01:00
docs minor 2022-02-15 18:05:29 +01:00
theme s/gabrio/edera/ 2022-02-15 15:48:42 +01:00
.gitignore Don’t care for those who ignore you. Care for those who are ignoring others for you. 2020-02-28 23:50:07 +01:00
mkdocs.yml s/gabrio/edera/ 2022-02-15 15:48:42 +01:00
README.md readme docs 2022-02-15 16:49:40 +01:00

Sito di hackrocchio

Fatto con mkdocs.
Puoi cambiare i testi dei markdown anche qui, poi qualcuno fara' il deploy.

Deploy

niente CI, niente webhook, devi mettere questo qui sotto in .git/hooks/pre-push e renderlo +x

#!/bin/sh
remoteUser="root"
remoteServer="castro.cose.belle"
remotePath="/var/www/hackrocchio"
localPath="./site/"
buildCmd="mkdocs build"

current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')

if [ $current_branch = "master" ]; then
  $buildCmd
  echo Updating files...
  rsync -rzhe ssh --delete --filter=':- .gitignore' ./site/ $remoteUser@$remoteServer:$remotePath
fi

# and you're done!
exit 0