From 7728257b512e466f734995280845ee13b211f53a Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 5 Sep 2013 17:43:54 +0200 Subject: [PATCH] start.sh: apply migration as they work now, fix django version requirement string --- start.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/start.sh b/start.sh index 9bb42f0e6..8d3f41de8 100755 --- a/start.sh +++ b/start.sh @@ -15,11 +15,10 @@ if [ "$VIRTUAL_ENV" = "" ]; then fi fi easy_install -U pip distribute -pip install -U django>1.5.0,<1.6 +pip install -U 'django>1.5.0,<1.6' pip install -U -r requirements.txt if [ ! -f $PROJECT.db ]; then - $CTL syncdb --all --noinput - $CTL migrate --fake + $CTL syncdb --migrate --noinput $BASE/load-base-data.sh fi $CTL runserver