added deploy script

edited dates to dates the articles were originally written.
This commit is contained in:
Gabe Venberg 2023-06-22 16:28:06 -05:00
parent 5bd850c0a1
commit 5bfdffb4b9
4 changed files with 19 additions and 7 deletions

View file

@ -1,6 +1,6 @@
---
title: "ArchInstall"
date: 2023-06-22T00:19:51-05:00
title: "Archlinux install with btrfs, systemd-boot, and full-disk encryption"
date: 2021-04-11T19:19:51-05:00
draft: false
---

View file

@ -1,7 +1,7 @@
---
title: "CapsToCtrl"
date: 2023-06-22T01:59:28-05:00
draft: true
title: "Mapping caps lock to ctrl in the TTY"
date: 2021-05-23T04:59:28-05:00
draft: false
---
= Caps to Ctrl in tty

12
deploy.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
set -e
USER=root
HOST=10.10.1.5
DIR=/srv/gabevenberg
hugo
rsync -rvz --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public folder
exit 0

View file

@ -1,6 +1,6 @@
baseURL = 'http://example.org/'
baseURL = 'https://gabevenberg.com/'
languageCode = 'en-us'
title = 'My New Hugo Site'
title = 'Gabe Venberg'
theme = 'poison'
[params]