Created
February 19, 2010 22:20
-
-
Save jviereck/309289 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/bash | |
echo "=== Start installing Bespin ===" | |
mkdir $1 | |
cd $1/ | |
hg clone http://hg.mozilla.org/labs/bespinclient | |
hg clone http://hg.mozilla.org/labs/bespinserver | |
cd bespinclient | |
python bootstrap.py --no-site-package | |
source bin/activate | |
paver install_server | |
paver create_db | |
paver install_sproutcore -g | |
echo "=== Bespin is installed ===" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment