Initial commit of repo.

This commit is contained in:
Colin Diem
2020-07-08 21:11:53 -04:00
commit 3c3eb54108
34 changed files with 3620 additions and 0 deletions

10
deploy.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
clear
echo "Running hugo and copying the public directory to the /srv/http directory."
cd /home/pi/quickstart
hugo
cp -r /home/pi/quickstart/public/. /srv/http
echo "If there were no erros, I think we did it!"