Skip to content

Instantly share code, notes, and snippets.

View jaderberg's full-sized avatar

Max Jaderberg jaderberg

View GitHub Profile
@jaderberg
jaderberg / bootstrap.sh
Created September 24, 2011 15:38 — forked from anonymous/bootstrap.sh
Django on Heroku with 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