Skip to main content

One django library to rule all multi-tenant.

Project description

Django Ultratenant

Pitch (Portuguese)

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

PyPI

Coverage Status

Documentation Status

Ultimate Django app for multi-tenant.

Installation

pip install django-ultratenant

How to Use

  • TODO

Alternatives

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-ultratenant-0.0.3.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

django_ultratenant-0.0.3-py3-none-any.whl (6.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page