Skip to content

Instantly share code, notes, and snippets.

@trey
Last active January 27, 2016 22:13
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save trey/2596149 to your computer and use it in GitHub Desktop.
Save trey/2596149 to your computer and use it in GitHub Desktop.
How to start a Django project in 2012

This is a little out of date. Be sure to check the Heroku docs for the latest and greatest.


How to start a Django project in 2012

(and deploy to Heroku)

First, warm up your system.

$ easy_install pip (may need sudo)
$ pip install virtualenv (may need sudo)
$ pip install django (may need sudo)
$ brew install postgresql

Then be sure to follow the instructions for finishing the postres setup.

Start a project.

$ django-admin.py startproject [myproject]
$ cd !$

Setup virtualenv and start it up.

$ virtualenv --no-site-packages ve
$ source ve/bin/activate

(ve for virtualenv. Isn't that nice and terse? You can call it whatever you want.)

Install some things into your virtualenv.

$ pip install Django psycopg2 south dj-database-url

Now load the exact version into a requirements.txt file.

$ pip freeze > requirements.txt

(psycopg2 is a PostgreSQL adapter for Python.)

Put south in your INSTALLED_APPS in settings.py.

INSTALLED_APPS = (
    'south',
    ...

Make .manage.py executable (so you don't have to type python manage.py ... all the time).

$ chmod +x manage.py

Don't forget to add ve to your .gitignore file.

Database settings for local development and Heroku

Create a database for local use.

createdb [whatever]

Add the following to the end of your settings.py file:

import dj_database_url
DATABASES = {'default': dj_database_url.config(default='postgres://localhost/[whatever]')}

If you want to sync your local database with Heroku, see this post.

Now go make something awesome.

Deploy to Heroku

$ heroku create
$ git push heroku master
$ heroku run ./manage.py syncdb
$ heroku open

Update your database with South and push the changes to Heroku

  1. Make changes to your models
  2. $ ./manage.py schemamigration [appname] --auto
  3. $ ./manage.py migrate [appname]
  4. [commit & push changes to heroku]
  5. $ heroku run ./manage.py migrate [appname]

Working on your project later

Whenever you work on your project, you'll want to activate your virtualenv:

$ source ve/bin/activate

Then load any new requirements:

$ pip install -r requirements.txt

Sync and/or migrate your database:

$ ./manage.py syncdb
$ ./manage.py migrate [appname]

Finally, fire up your server:

$ ./manage.py runserver

Sources

@trey
Copy link
Author

trey commented May 26, 2012

This is a Solutions Log post.

@binarymatt
Copy link

why are you install django at the system level and at the virtualenv level?

@trey
Copy link
Author

trey commented Oct 19, 2012

@binarydud, Just for the initial setup of a new project. Not necessary, I guess.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment