Compare commits
No commits in common. "5491bfc9642ede6b71b41b783bda8f135749a956" and "3edaf126dcc553614fa7553fcba33c10054dcab5" have entirely different histories.
5491bfc964
...
3edaf126dc
15
config.toml
15
config.toml
|
@ -20,20 +20,15 @@ mode = "dark-mode"
|
|||
|
||||
[menu]
|
||||
[[menu.main]]
|
||||
identifier = "about"
|
||||
name = "About"
|
||||
url = "/about/"
|
||||
weight = 1
|
||||
identifier = "git"
|
||||
name = "git repos"
|
||||
url = "https://git.thurstylark.com"
|
||||
weight = 2
|
||||
[[menu.main]]
|
||||
identifier = "windex"
|
||||
name = "Wiki Index"
|
||||
url = "/"
|
||||
weight = 2
|
||||
[[menu.main]]
|
||||
identifier = "git"
|
||||
name = "git repos"
|
||||
url = "https://git.thurstylark.com"
|
||||
weight = 3
|
||||
weight = 1
|
||||
|
||||
[taxonomies]
|
||||
category = "categories"
|
||||
|
|
6
deploy
6
deploy
|
@ -3,9 +3,11 @@
|
|||
# To auto-deploy this on git push, add a symlink at .git/hooks/pre-push that points to this script
|
||||
# Example: ln -s ../../deploy .git/hooks/pre-push
|
||||
|
||||
# Get the dir of the running script
|
||||
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||
|
||||
# Pull variables in from deploy_id
|
||||
#source "$SCRIPT_DIR/deploy_id"
|
||||
source "./deploy_id"
|
||||
source "$SCRIPT_DIR/deploy_id"
|
||||
|
||||
# Generate and push the output to the server
|
||||
hugo && rsync -avz --delete public/ ${USER}@${HOST}:${DIR}
|
||||
|
|
Loading…
Reference in New Issue