Getting started

This document is designed to get you up and running with pinax.apps.authsub...

Prerequisites

These are the requirements to run pinax.apps.authsub:

These dependencies should be added to your requirements/project.txt file and installed using pip. For example:

pip install -r requirements/project.txt

Installation

Add pinax.apps.authsub to your INSTALLED_APPS:

INSTALLED_APPS = [
    # ...
    "pinax.apps.authsub",
]

Hook up pinax.apps.authsub to your URLconf:

urlpatterns = patterns("",
    # ...
    url(r"^authsub/", include("pinax.apps.authsub.urls"))
)

Table Of Contents

Previous topic

authsub

Next topic

Reference

This Page