Skip to content

Instantly share code, notes, and snippets.

View gyges1's full-sized avatar

Brad Gyger gyges1

  • Heroku
  • San Francisco, CA
View GitHub Profile
@gyges1
gyges1 / bootstrap.sh
Created September 17, 2011 15:40 — 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