Mercurial > hg > toolbox
comparison INSTALL.sh @ 0:b0942f44413f
import from git://github.com/mozilla/toolbox.git
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 11 May 2014 09:15:35 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b0942f44413f |
---|---|
1 #!/bin/bash | |
2 | |
3 # Installs toolbox in a virtualenv | |
4 VIRTUALENV=$(which virtualenv) | |
5 ${VIRTUALENV} toolbox | |
6 cd toolbox | |
7 . bin/activate | |
8 mkdir src | |
9 git clone git://github.com/mozilla/toolbox.git | |
10 cd toolbox | |
11 python setup.py develop | |
12 # now run: | |
13 # paster serve paste.ini | |
14 # from the toolbox virtualenv to serve the sample app |