Index

joshstock.in / b132d9a

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
13311 Jul 2022 19:29b132d9aBring up to dateJosh Stockin164G

Blob @ joshstock.in / post-receive

text/x-shellscript1104 bytesdownload raw
1#!/bin/bash
2
3# this file is automatically updated, although the pre-receive hook must be placed manually:
4# 'pre-receive' -> '.git/hooks/pre-receive'
5
6TARGET="/home/ubuntu/joshstockin-deploy"
7GIT_DIR="/home/ubuntu/joshstockin.git"
8BRANCH="master"
9HTML_OUT="/var/www/html"
10
11while read oldrev newrev ref
12do
13 if [ "$ref" = "refs/heads/$BRANCH" ];
14 then
15 echo "Ref $ref received. Deploying ${BRANCH} branch to production..."
16 git --work-tree=$TARGET --git-dir=$GIT_DIR checkout -f $BRANCH
17 echo "Installing required Python modules"
18 sudo python3 -m pip install -r $TARGET/requirements.txt
19 echo "Compiling root HTML"
20 sudo $TARGET/root/compile.py $HTML_OUT
21 echo "Installing nginx configuration"
22 sudo $TARGET/nginx/copynginx prod
23 echo "Installing resty-gitweb configuration"
24 sudo install $TARGET/resty-gitweb.yaml /etc/resty-gitweb.yaml
25 echo "Removing deploy directory"
26 rm -rf $TARGET
27 else
28 echo "Ref $ref received. Doing nothing: only the ${BRANCH} branch may be deployed on this server."
29 fi
30done
31