Metadata-Version: 1.1
Name: djangomultitenant
Version: 0.0.1
Summary: A django app which helps to implement multitenancy easily
Home-page: https://github.com/akhilputhiry/djangomultitenant
Author: Akhil Lawrence
Author-email: akhilputhiry@gmail.com
License: GNU GPLv3
Description: ## Django Multitenant ##
        
        This app can be used to multitenant architecture within your django project very easily. Inorder to use, you have add this app to the django installed apps and add the middleware and db router in the settings file
        
        
        ```
        INSTALLED_APPS = [
            'djangomultitenant',
        ]
        
        DATABASE_ROUTERS = [
            'djangomultitenant.Router',
        ]
        
        MIDDLEWARE = [
            'djangomultitenant.Middleware',  # this has to be the first one
        ]
        ```
        
Keywords: multitenant,multitenancy,django multitenant,django multitenancy
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: Freeware
