Table of Contents
This is the code for the example used in the Django Media Explorer documentation.
#Installation
This was tested on Django 1.8.8
virtualenv dme
cd dme
source bin/activate
pip install django-media-explorer
git clone https://github.com/oxfamamerica/media_explorer_example.git
cd media_explorer_example
python manage.py makemigrations
python manage.py migrate
#Create a superuser so you can add data in the admin section
python manage.py createsuperuser
python manage.py runserver
Run tests
python manage.py test media_explorer.tests