this project is wrapper for auth
Project description
codingsoho-auth
codingsoho-authwrapper project is auth wrapper for authentication
Detailed documentation is in the "docs" directory.
Quick start
-
Install 'authwrapper' and 'django-phone-login', checking django-phone-login readme for configuration
-
Add "authwrapper" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [ ... 'authwrapper', 'phone_login', ]
3 Add configurations
AUTH_USER_MODEL = 'authwrapper.MyUser' ACCOUNT_ALLOW_MIX_TYPE_LOGIN = True UUSLUGIFY = True AUTHENTICATION_BACKENDS = ( 'authwrapper.backends.auth.MyBackend', 'authwrapper.backends.auth.WechatBackend', # if support wechat 'django.contrib.auth.backends.ModelBackend', ) # if support wechat APP_SECRET = APP_ID = ACCOUNT_REGISTER_TYPE = 'phone' # or 'email'
- Include the polls URLconf in your project urls.py like this::
url(r'^authwrapper/', include('authwrapper.urls')),
-
Run
python manage.py migrate
to create the authwrapper models. -
Start the development server and visit http://127.0.0.1:8000/admin/ to create a models if needed (you'll need the Admin app enabled).
-
Visit http://127.0.0.1:8000/authwrapper/ to participate in the auth.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size codingsoho-auth-1.0.2.tar.gz (70.4 kB) | File type Source | Python version None | Upload date | Hashes View |