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
-----------
1. Install 'authwrapper' and 'django-phone-login', checking django-phone-login readme for configuration
2. 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'
2. Include the polls URLconf in your project urls.py like this::
url(r'^authwrapper/', include('authwrapper.urls')),
3. Run `python manage.py migrate` to create the authwrapper models.
4. 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).
5. Visit http://127.0.0.1:8000/authwrapper/ to participate in the auth.
codingsoho-auth
=====
codingsoho-authwrapper project is auth wrapper for authentication
Detailed documentation is in the "docs" directory.
Quick start
-----------
1. Install 'authwrapper' and 'django-phone-login', checking django-phone-login readme for configuration
2. 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'
2. Include the polls URLconf in your project urls.py like this::
url(r'^authwrapper/', include('authwrapper.urls')),
3. Run `python manage.py migrate` to create the authwrapper models.
4. 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).
5. 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.
Source Distribution
codingsoho-auth-1.0.0.tar.gz
(39.5 kB
view details)
File details
Details for the file codingsoho-auth-1.0.0.tar.gz.
File metadata
- Download URL: codingsoho-auth-1.0.0.tar.gz
- Upload date:
- Size: 39.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b628233f05f8a2220389c63656ad5f4ee8a0809079c04445a3bdd193538d01d1
|
|
| MD5 |
2c53f2b7920e9c9feee138d861d5df39
|
|
| BLAKE2b-256 |
a27675c4bc5e0bc1fa0f50b86744e0d78bbb58eb4f0bc631cec27c92774e23bb
|