doc: add some deploy doc and readme

This commit is contained in:
Hugo Poissonnet 2022-11-19 16:33:50 +01:00
parent 75012416a1
commit 934f90605e
3 changed files with 16 additions and 4 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# HugoPoi's blog deploy documentation
* Some deploy code

9
deploy.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# Build
hugo
# Backup current deploy
ssh home.hugopoi.net sudo yunohost backup create --apps my_webapp
# Deploy full legacy and new blog
rsync -rlgoD --checksum --verbose www/ home.hugopoi.net:/var/www/my_webapp/www/
# Deploy only the new hugo blog
rsync -rlgoD --verbose --checksum --delete www/v2/ home.hugopoi.net:/var/www/my_webapp/www/v2/

View File

@ -41,10 +41,10 @@ name = "Home"
url = "/" url = "/"
weight = 1 weight = 1
[[menu.nav]] # [[menu.nav]]
name = "Blog" # name = "Blog"
url = "/post/" # url = "/post/"
weight = 2 # weight = 2
# [[menu.nav]] # [[menu.nav]]
# name = "Tags" # name = "Tags"