Add README file

This commit is contained in:
Roddy González 2024-05-12 18:22:30 +02:00
parent be6d97a001
commit 410b775e06
Signed by: release_candidate
GPG key ID: 1B4847B4102A33EA

29
README.md Normal file
View file

@ -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/
```