Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 337 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 337 Bytes

Django Tutorial

The project contains the source code for the official Django tutorial at https://docs.djangoproject.com/en/1.10/intro/

Setting Up

$ cd django-tutorial
$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt
$ ./manage.py migrate

Running

$ ./manage.py runserver