doc: add some deploy doc and readme
This commit is contained in:
parent
75012416a1
commit
934f90605e
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# HugoPoi's blog deploy documentation
|
||||
|
||||
* Some deploy code
|
9
deploy.sh
Normal file
9
deploy.sh
Normal 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/
|
|
@ -41,10 +41,10 @@ name = "Home"
|
|||
url = "/"
|
||||
weight = 1
|
||||
|
||||
[[menu.nav]]
|
||||
name = "Blog"
|
||||
url = "/post/"
|
||||
weight = 2
|
||||
# [[menu.nav]]
|
||||
# name = "Blog"
|
||||
# url = "/post/"
|
||||
# weight = 2
|
||||
|
||||
# [[menu.nav]]
|
||||
# name = "Tags"
|
||||
|
|
Loading…
Reference in New Issue
Block a user