Simple database router that helps to implement microservices architecture with Django.
Project description
Django microservice auth SDK
Django auth DB router.
Simple database router that helps to split your main database and authentication database. This may be necessary when splitting a project into microservices. Let's say you have some Django project and want to split it into microservices. But all of your microservices need to use the same authentication database. This router will help you to do that.
How it works
- Django project that provides authentication also shares default database with other microservices.
- Other microservices may have their own databases, but they all use the same authentication database.
Which apps are routed to auth_db database?
contenttypessitesauthadminflatpagesredirectsauditlogsessions
Models of these apps are routed to auth_db database.
These apps are hardcoded in ms_auth_router.routers.DefaultRouter.
List can be extended by adding ROUTE_APP_LABELS setting.
If you know that some reusable Django apps should be routed to
auth_dbdatabase, please create an issue or pull request.
Quickstart
Add ms_auth_router to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...,
'ms_auth_router',
...
]
Add DATABASE_ROUTERS setting in settings.py file or append to existing list:
DATABASE_ROUTERS = [
'ms_auth_router.routers.DefaultRouter',
...
]
Add auth_db section to DATABASES:
DATABASES = {
...
'auth_db': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'auth.sqlite3',
},
...
}
Finally, add AUTH_DB setting:
AUTH_DB = 'auth_db'
Without this setting router will use default db connection.
Note: To get session authentication working between microservices, the
SECRET_KEYsetting must be the same in all microservices.
Use with custom auth app
If you're using custom auth app and want it to be routed to auth_db database,
you need to add ROUTE_APP_LABELS setting:
ROUTE_APP_LABELS = ['my_custom_auth_app', ]
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
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 dj-ms-auth-router-1.5.1.tar.gz.
File metadata
- Download URL: dj-ms-auth-router-1.5.1.tar.gz
- Upload date:
- Size: 185.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2779f6ad11fd93182948204febd6e301c43f18b56c0c57ee9bb5ab8f40dd3c29
|
|
| MD5 |
352c480bedce12ff89b8903c1387c199
|
|
| BLAKE2b-256 |
c72c825fc9cf82d72ababc6e2114e6f85f3219cafd82aa251766a0a3b9ceaa8f
|
File details
Details for the file dj_ms_auth_router-1.5.1-py3-none-any.whl.
File metadata
- Download URL: dj_ms_auth_router-1.5.1-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14e833dbdad6e5b1f00784aee2ec6f696d242eb463d9515c6d84d8250da5131a
|
|
| MD5 |
0e4b8236707aa3aa29aff61f02bd42a2
|
|
| BLAKE2b-256 |
6a522162bea82012f35de7828540a7864dca176441051aa98d6f40d37e8e0582
|