Created
April 27, 2009 02:07
-
-
Save rcrowley/102284 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# Haystack/Whoosh setup | |
WD=$(pwd) | |
cd /tmp/ | |
svn co http://svn.whoosh.ca/projects/whoosh/trunk whoosh | |
cd whoosh | |
sudo python setup.py install | |
cd .. ; sudo rm -rf whoosh | |
git clone git://github.com/toastdriven/django-haystack.git haystack | |
cd haystack | |
sudo python setup.py install | |
cd .. ; sudo rm -rf haystack | |
cd $WD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment