django-sandstorm

A sandstorm.io integration for Django.


License
MIT
Install
pip install django-sandstorm==0.0.1

Documentation

PyPI

django-sandstorm

Django package for helping integrate a django app with sandstorm.io

To use: pip install django-sandstorm

It is HIGHLY recommended you make a separate sandstorm settings file for your app. Whether or not you do, the following needs to go in your app settings for integration with sandstorm to work:

INSTALLED_APPS += (
    'django_sandstorm',
)

AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.RemoteUserBackend',
)

MIDDLEWARE_CLASSES += (
    'django_sandstorm.middleware.SandstormMiddleware',
)