http://www.django-rest-framework.org/tutorial/quickstart/#project-setup
- install python
- install apache and mod_wsgi
- install pip
- install virtualenv
- create a virtual env in the directory where you want to build your app.
cd /path/to/directory/where/app/will/reside
virtualenv .
source bin/activate
- Install django in this location
pip install Django
- Create the app using startproject command
django-admin startproject mysite
- Test if the server runs successfully
django-admin startproject mysite
- Install the rest framework
pip install djangorestframework
- Migrate
python manage.py migrate
- Create super user
python manage.py createsuperuser
to be continued...