[Django]-DJango: Multiple instances of an application in a single project

3๐Ÿ‘

โœ…

I think you would like to see Multi Tenant Applications in Django.

If you follow this book it contain what you are looking for. Building Multi Tenant Applications with Django

Taken from the above shared docs.(Summary)

The various approached to multi tenancy

  • Shared database with shared schema
  • Shared database with isolated schema
  • Isolated database with a shared app server
  • Completely isolated tenants using Docker
๐Ÿ‘คbkawan

Leave a comment