Added talk.html.twig

This commit is contained in:
Oliver Davies 2015-04-10 23:25:52 +01:00
parent fa36a2f61c
commit 9ab6f68877
12 changed files with 27 additions and 16 deletions

10
publish.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
SERVER_NAME="root@212.111.40.238"
DOCROOT="/var/www/html/oliverdavies.co.uk/htdocs"
sculpin generate --env=prod
if [ $? -ne 0 ]; then echo "Could not generate the site"; exit 1; fi
rsync -avze 'ssh' --delete output_prod/ ${SERVER_NAME}:${DOCROOT}
if [ $? -ne 0 ]; then echo "Could not publish the site"; exit 1; fi