Re: Replicating same model for different deployed application.

2013-01-01 Thread Amirouche
On Sunday, December 30, 2012 7:43:11 PM UTC+1, Subodh Nijsure wrote: > > > Exactly I was missing the django/web app terminology of multi-tenant app. > I think, it's a software terminology, it isn't particular to web or django, but I encountered only in web. > > I tried using https://github.

Re: Replicating same model for different deployed application.

2012-12-30 Thread Subodh Nijsure
Exactly I was missing the django/web app terminology of multi-tenant app. I tried using https://github.com/phugoid/django-simple-multitenant and it seems to have issues. I will see if I can fix them with my limited knowledge of django. Are there any good multi-tenants frameworks for django out th

Re: Replicating same model for different deployed application.

2012-12-30 Thread Amirouche
Héllo Subodh On Sunday, December 30, 2012 3:57:36 AM UTC+1, Subodh Nijsure wrote: > > Hi, > > I have following situation where. My model consist of say table1, table2, > table3. > > I am going to "host" similar data and associated web interface for > multiple customers -( customer1, customer2,

Re: Replicating same model for different deployed application.

2012-12-30 Thread Thiago Luiz Silva
Hello, I guess that the most elegant way is to create a "detachable" app in one principal project and then you install it on the projects that will use that. After the installation you may run the migrations for each project so you don´t have to change files and keep track of changes. We are deve

Replicating same model for different deployed application.

2012-12-29 Thread Subodh Nijsure
Hi, I have following situation where. My model consist of say table1, table2, table3. I am going to "host" similar data and associated web interface for multiple customers -( customer1, customer2, customer3.) they would access these application as http://hostname/customer1 http://hostname/custome