Metadata-Version: 1.1
Name: django-oppia
Version: 0.1.8
Summary: Server side component of OppiaMobile learning platform
Home-page: http://oppia-mobile.org/
Author: Alex Little, Digital Campus
Author-email: alex@digital-campus.org
License: GNU GPL v3 License
Description: ===========
        OppiaMobile
        ===========
        
        OppiaMobile is the server side component for the OppiaMobile learning application
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "oppia" and "oppia.quiz" to your INSTALLED_APPS setting like this::
        
              INSTALLED_APPS = (
                  ...
                  'oppia',
                  'oppia.quiz'
              )
        
        2. Include the oppia URLconf in your project urls.py like this::
        
              url(r'^oppia/', include('oppia.urls')),
        
        3. Run `python manage.py migrate oppia` and `python manage.py migrate oppia.quiz` to create the oppia models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/ 
           (you'll need the Admin app enabled).
        
        5. Visit http://127.0.0.1:8000/oppia/ 
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
