Project

General

Profile

Download (1.54 KB) Statistics
| Branch: | Tag: | Revision:
Multitenant
-----------

An application for making a Django application multitenant for Entr'ouvert
customers.

Install
-------

Set the tenant model:

TENANT_MODEL = 'multitenant.Tenant'

Add the middlewares for multitenant, they must be first:

MIDDLEWARE_CLASSES = (
'tenant_schemas.middleware.TenantMiddleware',
'entrouvert.djommon.multitenant.middleware.EOTenantMiddleware',
...
)

Add the multitenant filesystem template loader:

TEMPLATE_LOADERS = (
'entrouvert.djommon.multitenant.template_loader.FilesystemLoader'
....
)

Configure where the multitenant templates are located:


MULTITENANT_TEMPLATE_DIRS = ('/var/lib/my_project/templates/',)

Define the shared application:


SHARED_APPS = (
'tenant_schemas',
'entrouvert.djommon.multitenant',
# those are needed for the public apps to work
# add also any application needed by the public app
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',
)

TENANT_APPS = INSTALLED_APPS

INSTALLED_APPS += ('tenant_schemas', 'entrouvert.djommon.multitenant')

Use multitenant database engine:

DATABASES = {
'default': {
'ENGINE': 'tenant_schemas.postgresql_backend',
'NAME': '<db_name>',
},
}

Use multitenant south adapter:

SOUTH_DATABASE_ADAPTERS = {
'default': 'south.db.postgresql_psycopg2',
}
(1-1/7)