Created
April 30, 2012 03:09
-
-
Save rtorr/2555160 to your computer and use it in GitHub Desktop.
Old hyde bash function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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