Provides user accounts to a project template.
- Install Project Template
django-admin.py startproject --template=https://github.com/zhouxb/project_template/zipball/master [project_name]
- Install App Account
pip install https://github.com/zhouxb/app_account/zipball/master
- Add account to INSTALLED_APPS in settings.py
INSTALLED_APPS = {
...
account,
}
- Add account url in urls.py
url(r'account/', include('account.urls')),
- Create DB
python manage.py schemamigration account --init
python manage.py migrate account