One django library to rule all multi-tenant.
Project description
Django Ultratenant
Pitch (Portuguese)
- Part 1: https://www.loom.com/share/a90948958c184a0fb64868bbb0230a28
- Part 2: https://www.loom.com/share/52fd66b6f5a047f88a9fed56c1cf70d1
What is
-
Django multi-tenant library that implements diferent approaches
-
Simple API with minimal setup
-
Transparent for the application
-
Supported isolations approaches:
- multi-db
- multi-schema
- tenant-id
-
Supported URL approaches: subdomain and path
- tenant.url.com
- url.com/tenant/admin/
-
Support multiple databases
-
Good documentation
Contributing
Rules to contribute
Clone the code
git clone https://github.com/HBN3tw0rk/django-ultratenant
cd django-ultratenant
git checkout main
Or
git clone git@github.com:HBN3tw0rk/django-ultratenant.git
cd django-ultratenant
git checkout main
Setup the project
python -m venv .venv
source .venv/bin/activate
pip install -U pip
pip install ".[test]"
pre-commit install
pre-commit autoupdate
pytest
Create a new branch
git fetch origin
git checkout -b task/branch-name-you-work-issue
Create a pull request to the branch main
Ultimate Django app for multi-tenant.
- Documentation: https://django-ultratenant.readthedocs.io.
Installation
pip install django-ultratenant
How to Use
- TODO
Alternatives
- https://github.com/django-tenants/django-tenants/ - only Postgres with multi-schema
- https://github.com/citusdata/django-multitenant - only Postgres (with Citus extension)
Base projects
MVP
-
setup and pip
-
SQLite3 support
-
multi-db
-
tenant on URL path
-
documetation about how customize manage.py
API
# settings.py
from ultratenant.multidb import Databases
...
MIDDLEWARE = [
...
'ultratenant.path.Middleware',
]
...
DATABASES = Databases(config('DATABASE_URL', cast=dburl))
DATABASE_ROUTERS = ['ultratenant.multidb.Router']
(maybe it won't be necessary)
# urls.py
...
from ultimate_tenants.urls import tenants_path
urlpatterns = tenants_path([
path('admin/', admin.site.urls),
path('', index, name='index'),
])
# url.com/tenant/admin
Roadmap
-
other databases supported by Django: PostgreSQL, MariaDB, MySQL, Oracle
-
multi-schema
-
tenant-id
-
custom [manage.py]{.title-ref} to access different tenants
-
cookiecutter to create a new project
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
[0.0.1] - 2022-07-31
Added
- First release on PyPI.
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 django-ultratenant-0.0.3.tar.gz.
File metadata
- Download URL: django-ultratenant-0.0.3.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
817425f41b1ba8882fd000f8b683b970a6312f33a3df3b023ea0f8a56a976731
|
|
| MD5 |
5e967b6b679df847c2108c97756506fe
|
|
| BLAKE2b-256 |
23959b370d59ef4b26c4c17aa6b8302b70f65d060cf199d3d73f38ca1a0522a4
|
File details
Details for the file django_ultratenant-0.0.3-py3-none-any.whl.
File metadata
- Download URL: django_ultratenant-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee9e60c9b7fcc62864735652d524643a363e3a2107f181107d33454dc6bb053
|
|
| MD5 |
3d965546a7230dbb62c9d047861e8ca5
|
|
| BLAKE2b-256 |
dd4608a70bcc3b6d724c0062d35ca3379b422bae2c9bbda5ac052646a2030ec7
|