From 7f1f6ae35f1211d2aee10ec530f915c394114aff Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sat, 25 Oct 2014 11:14:07 -0500 Subject: [PATCH] fixed heorku order of install, thanks Jay --- scripts/setup-web2py-heroku.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-web2py-heroku.sh b/scripts/setup-web2py-heroku.sh index e13c7187..5d57d89f 100644 --- a/scripts/setup-web2py-heroku.sh +++ b/scripts/setup-web2py-heroku.sh @@ -1,8 +1,8 @@ read -p "Choose your admin password?" passwd sudo pip install virtualenv -sudo pip install psycopg2 virtualenv venv --distribute source venv/bin/activate +sudo pip install psycopg2 pip freeze > requirements.txt echo "web: python web2py.py -a '$passwd' -i 0.0.0.0 -p \$PORT" > Procfile git init