Django account manager
Project description
# Django Account
Account app for the Django framework provides an email based user object
## Simple usage
1. Install by running `pip install djaccount`
2. Add the following settings to your `settings.py` file
```python
INSTALLED_APPS = [
# contrib and other apps here
'account',
# some more custom apps here
]
AUTH_USER_MODEL = 'account.Account'
LOGIN_URL = '/account/login/'
LOGIN_REDIRECT_URL = '/account/'
LOGOUT_REDIRECT_URL = '/'
```
3. Add the account URLs to your `urls.py` file
```python
urlpatterns = [
url(r'^account/', include('account.urls', namespace='account')),
]
```
4. Run `django-admin migrate`
## Integrated usage
**TBD**
## License
See [LICENSE](LICENSE)
Some of the work was made as part of my job at [Sync.me](https://sync.me)
Account app for the Django framework provides an email based user object
## Simple usage
1. Install by running `pip install djaccount`
2. Add the following settings to your `settings.py` file
```python
INSTALLED_APPS = [
# contrib and other apps here
'account',
# some more custom apps here
]
AUTH_USER_MODEL = 'account.Account'
LOGIN_URL = '/account/login/'
LOGIN_REDIRECT_URL = '/account/'
LOGOUT_REDIRECT_URL = '/'
```
3. Add the account URLs to your `urls.py` file
```python
urlpatterns = [
url(r'^account/', include('account.urls', namespace='account')),
]
```
4. Run `django-admin migrate`
## Integrated usage
**TBD**
## License
See [LICENSE](LICENSE)
Some of the work was made as part of my job at [Sync.me](https://sync.me)
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
djaccount-0.0.6b1.tar.gz
(5.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file djaccount-0.0.6b1.tar.gz.
File metadata
- Download URL: djaccount-0.0.6b1.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d521587fbd3a42a0eaaa2d2678843d6c3859a6d4f0209680c2f27bc4d9c85caf
|
|
| MD5 |
abab7279184d84b634493e142a2dac3e
|
|
| BLAKE2b-256 |
34a945591f30c50d7cb6d2bf98ac157fe701404260e35c402c15006b46bfc5b2
|
File details
Details for the file djaccount-0.0.6b1-py3-none-any.whl.
File metadata
- Download URL: djaccount-0.0.6b1-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f97dc88c4587fef75b3ec7e4d0f7234c28db9741f0fcd7effc353e90fd8c52f5
|
|
| MD5 |
11a7a9c14d59ae6baf70b7e26225ee96
|
|
| BLAKE2b-256 |
ec6f2f7644c41a5c4e8334a1fc567ca93356140d0a21c088717b03bbb2273ee6
|