Skip to content

Instantly share code, notes, and snippets.

View jsaxon-cars's full-sized avatar

James Bennett Saxon jsaxon-cars

View GitHub Profile
@utsengar
utsengar / bootstrap.sh
Created June 2, 2011 19:00 — forked from anonymous/bootstrap.sh
Django on Heroku with Postgres, Celery and Sentry
virtualenv --no-site-packages .
source bin/activate
bin/pip install Django psycopg2 django-sentry
bin/pip freeze > requirements.txt
bin/django-admin.py startproject mysite
cat >.gitignore <<EOF
bin/
include/
lib/
EOF