diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/INSTALL.sh	Sun May 11 09:15:35 2014 -0700
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+# Installs toolbox in a virtualenv
+VIRTUALENV=$(which virtualenv)
+${VIRTUALENV} toolbox
+cd toolbox
+. bin/activate
+mkdir src
+git clone git://github.com/mozilla/toolbox.git
+cd toolbox
+python setup.py develop
+# now run:
+# paster serve paste.ini
+# from the toolbox virtualenv to serve the sample app
\ No newline at end of file