The source code for the Tuts+ series Django Fundamentals
-
Create a virtual environment for the course and install Django (this course was created with v1.5, so it will definitely work with that version, but all bets are off on future versions of Django).
% mkvirtualenv intermediate_django % pip install django
-
Get the source code for the course
% git clone https://github.com/croach/intermediate-django.git
-
Setup the database
% cd intermediate-django % manage.py syncdb # make sure you setup an admin user % python loader.py # populate DB with stories from HN
-
Run it
% manage.py runserver