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.2a1.tar.gz
(4.9 kB
view details)
File details
Details for the file djaccount-0.0.2a1.tar.gz.
File metadata
- Download URL: djaccount-0.0.2a1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faf4ee417fc30bbf0bf6b87bf4b5086b37cd61f883f9714af6d2d997b10334e5
|
|
| MD5 |
52e04c8570b2fb2d98f1a18d270c077e
|
|
| BLAKE2b-256 |
041980952738d7b43b38cc4f003662e3e6c7bccd49c6dff41e46f299678b19c8
|