Thursday, February 17, 2011

deck.cc - articles - Django 1.2 on Google App Engine

deck.cc - articles - Django 1.2 on Google App Engine: "# we create a directory to work with
mkdir django-on-appengine
cd django-on-appengine

# grab and extract the current django release tarball
curl -L http://www.djangoproject.com/download/1.2.1/tarball/ -o Django-1.2.1.tar.gz
tar xzvf Django-1.2.1.tar.gz

# zip the current django source
cd Django-1.2.1
zip -r ../django.zip django/
cd ..

# remove everything except django.zip
rm -rf Django-1.2*"