From 410b775e06d5bec4efdfba0b3e0b7e41109c81bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roddy=20Gonz=C3=A1lez?= Date: Sun, 12 May 2024 18:22:30 +0200 Subject: [PATCH] Add README file --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2063ad6 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# vsis.online + +This is my personal website. It's a blog based on [hugo](https://gohugo.io/) + +https://vsis.online/ + +## Run local server + +``` +hugo server +``` + +## Build + +``` +hugo +``` + +## Deploy + +I should do this automatically. +One day I will. + +``` +tar czvf public.tar.gz public/ +scp public.tar.gz vsis.online: +ssh vsis.online +sudo cp -rv public/* /var/www/vsis.online/ +```