Installation¶
Assuming you have django installed, the first step is to install django-tenant-schemas
.
pip install django-tenant-schemas
Basic Settings¶
You’ll have to make the following modifications to your settings.py
file.
Your DATABASE_ENGINE
setting needs to be changed to
DATABASES = {
'default': {
'ENGINE': 'tenant_schemas.postgresql_backend',
# ..
}
}
Add tenant_schemas.routers.TenantSyncRouter to your DATABASE_ROUTERS setting, so that the correct apps can be synced, depending on what’s being synced (shared or tenant).
DATABASE_ROUTERS = (
'tenant_schemas.routers.TenantSyncRouter',
)
Add the middleware tenant_schemas.middleware.TenantMiddleware
to the top of MIDDLEWARE_CLASSES
, so that each request can be set to use the correct schema.
MIDDLEWARE_CLASSES = (
'tenant_schemas.middleware.TenantMiddleware',
#...
)
Make sure you have django.core.context_processors.request
listed under TEMPLATE_CONTEXT_PROCESSORS
else the tenant will not be available on request
.
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request',
#...
)
The Tenant Model¶
Now we have to create your tenant model. Your tenant model can contain whichever fields you want, however, you must inherit from TenantMixin
. This Mixin only has two fields (domain_url
and schema_name
) and both are required. Here’s an example, suppose we have an app named customers
and we want to create a model called Client
.
from django.db import models
from tenant_schemas.models import TenantMixin
class Client(TenantMixin):
name = models.CharField(max_length=100)
paid_until = models.DateField()
on_trial = models.BooleanField()
created_on = models.DateField(auto_now_add=True)
# default true, schema will be automatically created and synced when it is saved
auto_create_schema = True
South Migrations¶
If you’re on Django 1.6 or older, this app supports South so if you haven’t configured it yet and would like to:
For Django 1.1 or below
SOUTH_DATABASE_ADAPTER = 'south.db.postgresql_psycopg2'
For Django 1.2 or above
SOUTH_DATABASE_ADAPTERS = {
'default': 'south.db.postgresql_psycopg2',
}
You can list south
under TENANT_APPS
and SHARED_APPS
if you want.
We override south
‘s syncdb
and migrate
command, so you’ll need to change your INSTALLED_APPS
to
INSTALLED_APPS = SHARED_APPS + TENANT_APPS + ('tenant_schemas',)
This makes sure tenant_schemas
is the last on the list and therefore always has precedence when running an overridden command.
Optional Settings¶
-
PUBLIC_SCHEMA_NAME
¶ Default: 'public'
The schema name that will be treated as
public
, that is, where theSHARED_APPS
will be created.
-
TENANT_CREATION_FAKES_MIGRATIONS
¶ Default: 'True'
Sets if the models will be synced directly to the last version and all migration subsequently faked. Useful in the cases where migrations can not be faked and need to be ran individually. Be aware that setting this to False may significantly slow down the process of creating tenants. Only relevant if South is used.
Tenant View-Routing¶
-
PUBLIC_SCHEMA_URLCONF
¶ Default: None
We have a goodie called
PUBLIC_SCHEMA_URLCONF
. Suppose you have your main website atexample.com
and a customer atcustomer.example.com
. You probably want your user to be routed to different views when someone requestshttp://example.com/
andhttp://customer.example.com/
. Because django only uses the string after the host name, this would be impossible, both would call the view at/
. This is wherePUBLIC_SCHEMA_URLCONF
comes in handy. If set, when thepublic
schema is being requested, the value of this variable will be used instead of ROOT_URLCONF. So for example, if you havePUBLIC_SCHEMA_URLCONF = 'myproject.urls_public'
When requesting the view
/login/
from the public tenant (your main website), it will search for this path onPUBLIC_SCHEMA_URLCONF
instead ofROOT_URLCONF
.
Separate projects for the main website and tenants (optional)¶
In some cases using the PUBLIC_SCHEMA_URLCONF
can be difficult. For example, Django CMS takes some control over the default Django URL routing by using middlewares that do not play well with the tenants. Another example would be when some apps on the main website need different settings than the tenants website. In these cases it is much simpler if you just run the main website example.com as a separate application.
If your projects are ran using a WSGI configuration, this can be done by creating a filed called wsgi_main_website.py
in the same folder as wsgi.py
.
# wsgi_main_website.py
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings_public")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
If you put this in the same Django project, you can make a new settings_public.py
which points to a different urls_public.py
. This has the advantage that you can use the same apps that you use for your tenant websites.
Or you can create a completely separate project for the main website.
Configuring your Apache Server (optional)¶
Here’s how you can configure your Apache server to route all subdomains to your django project so you don’t have to setup any subdomains manually.
<VirtualHost 127.0.0.1:8080>
ServerName mywebsite.com
ServerAlias *.mywebsite.com mywebsite.com
WSGIScriptAlias / "/path/to/django/scripts/mywebsite.wsgi"
</VirtualHost>
Django’s Deployment with Apache and mod_wsgi might interest you too.