diff options
author | David Runge <dave@sleepmap.de> | 2019-04-20 19:08:05 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2019-04-20 19:08:05 +0200 |
commit | 12536968dbd4dacbdd48b87ae75ae52d9980a8f0 (patch) | |
tree | ddf823c75d163688ee3e6343debaa3804b03d304 | |
parent | f9f1b4c9c8ab450557cb90f631d05596d0d5e9e2 (diff) | |
download | sleepmap-12536968dbd4dacbdd48b87ae75ae52d9980a8f0.tar.gz sleepmap-12536968dbd4dacbdd48b87ae75ae52d9980a8f0.tar.bz2 sleepmap-12536968dbd4dacbdd48b87ae75ae52d9980a8f0.tar.xz sleepmap-12536968dbd4dacbdd48b87ae75ae52d9980a8f0.zip |
conf.py: Adding default deploy configuration (using rsync).
-rw-r--r-- | conf.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -658,11 +658,11 @@ REDIRECTIONS = [] # to `nikola deploy`. If no arguments are specified, a preset # named `default` will be executed. You can use as many presets # in a `nikola deploy` command as you like. -# DEPLOY_COMMANDS = { -# 'default': [ -# "rsync -rav --delete output/ joe@my.site:/srv/www/site", -# ] -# } +DEPLOY_COMMANDS = { + 'default': [ + "rsync -rav --delete output/ dave@sleepmap.de:/srv/http/websites/sleepmap.de", + ] +} # github_deploy configuration # For more details, read the manual: |