From bc0980279f1ec0f261fa8164c00e7d19c22f03f7 Mon Sep 17 00:00:00 2001 From: drew Date: Sun, 20 Oct 2019 12:45:11 +0200 Subject: [PATCH] rebasing on master --- config.toml | 4 ++-- deploy | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100755 deploy diff --git a/config.toml b/config.toml index f0ddc6a..d968c37 100644 --- a/config.toml +++ b/config.toml @@ -1,4 +1,4 @@ -baseurl = "/" +baseurl = "/~y192235/" languageCode = "en-us" theme = "hermit" license = "WTFPL" @@ -26,7 +26,7 @@ enableEmoji = true relatedPosts = false # Directory name of your blog content (default is `content/posts`) - contentTypeName = "posts" + contentTypeName = "status" # Default theme "light" or "dark" defaultTheme = "dark" diff --git a/deploy b/deploy new file mode 100755 index 0000000..3c466a4 --- /dev/null +++ b/deploy @@ -0,0 +1,9 @@ +#!/bin/sh + +USER=y192235 +HOST=mrkev.fme.vutbr.cz +DIR=public_html/ + +hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR} + +exit 0