Skip to content

Instantly share code, notes, and snippets.

@rtorr
Created April 30, 2012 03:09
Show Gist options
  • Save rtorr/2555160 to your computer and use it in GitHub Desktop.
Save rtorr/2555160 to your computer and use it in GitHub Desktop.
Old hyde bash function
#generate hyde (old version https://github.com/lakshmivyas/hyde) site, deploy, and also watch files for changes.
#This takes a path argument, for example 'hydeploy ~/this/is/where/my/site/is/located' will
#spin up a server, and generate a static site in '~/this/is/where/my/site/is/located/deploy'
hydeploy(){
to=$1
hy='python ~/git/hyde/hyde.py'
hy --generate -s ${to} -d ${to}/deploy/ -k
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment