/django-account

a starter project that incorporates account features from django-user-accounts

Primary LanguageCSSMIT LicenseMIT

pinax-project-account

In addition to what is provided by the "zero" project, this project provides thorough integration with django-user-accounts, adding comprehensive account management functionality. It is a foundation suitable for most sites that have user accounts.

Usage:

django-admin.py startproject --template=https://github.com/pinax/pinax-project-account/zipball/master <project_name>

Getting Started:

pip install virtualenv
virtualenv mysiteenv
source mysiteenv/bin/activate
pip install Django==1.7.2
django-admin.py startproject --template=https://github.com/pinax/pinax-project-account/zipball/master mysite
cd mysite
pip install -r requirements.txt
./manage.py migrate
./manage.py loaddata sites
./manage.py runserver