Skip to content

Instantly share code, notes, and snippets.

@Hypercubed
Last active December 12, 2021 02:23
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save Hypercubed/5804999 to your computer and use it in GitHub Desktop.
Save Hypercubed/5804999 to your computer and use it in GitHub Desktop.
DocPad: rsync Deploy Script

DocPad: rsync Deploy Script

  • Place deploy.sh in {docpad folder}/bin/
  • Create (or edit) a .env file in your docpad folder with the following values:
#!/bin/bash
DEPLOY_SOURCE_DIR="out/"
DEPLOY_DEST_DIR="~/public_html/"
DEPLOY_SERVER=deploy-server-name
DEPLOY_ACCOUNT=deploy-login-name
  • Create a .deployignore file in docpad folder with the following values:
**.svn
.git
.gitignore
  • Test with ./bin/deploy.sh -n deploy with./bin/deploy.sh
#!/bin/bash
set -o nounset
set -o errexit
NFLAG=""
while getopts ":n" opt; do
case $opt in
n)
NFLAG="-n"
;;
\?)
echo "Invalid option: -$OPTARG" >&2
;;
esac
done
# Set the environment by loading from the file "environment" in the same directory
DIR="$( cd "$( dirname $( dirname "$0" ) )" && pwd)"
source "$DIR/.env"
echo "Deploying ${DIR}/${DEPLOY_SOURCE_DIR} to ${DEPLOY_ACCOUNT}@${DEPLOY_SERVER}:${DEPLOY_DEST_DIR}"
docpad generate --env static
chmod -R og+Xr out
rsync $NFLAG -rvzp --size-only --delete --exclude-from="$DIR/.deployignore" "${DIR}/${DEPLOY_SOURCE_DIR}" "${DEPLOY_ACCOUNT}@${DEPLOY_SERVER}:${DEPLOY_DEST_DIR}"
@rhamdeew
Copy link

mirzaa
You can create ~/.ssh/config file and specify port.
http://nerderati.com/2011/03/17/simplify-your-life-with-an-ssh-config-file/

@colorwebdesigner
Copy link

colorwebdesigner commented Apr 2, 2019

Please add these changes to the scripts so that you can specify the SSH port number:

.env

#!/bin/bash
DEPLOY_SOURCE_DIR="out/"
DEPLOY_DEST_DIR="~/public_html/"
DEPLOY_SERVER=deploy-server-name

# Add env to specify SSH port
# ------------------------------------
DEPLOY_PORT=22
# ------------------------------------

DEPLOY_ACCOUNT=deploy-login-name

deploy.sh
change rsync call to:

rsync $NFLAG -rvzp --size-only --delete -e "ssh -p ${DEPLOY_PORT}" --exclude-from="$DIR/.deployignore" "${DIR}/${DEPLOY_SOURCE_DIR}" "${DEPLOY_ACCOUNT}@${DEPLOY_SERVER}:${DEPLOY_DEST_DIR}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment