Re: Django SAAS projects

2009-11-03 Thread revolunet
Hi I developed a django based SAAS project and im very happy with it I have a single main project and differents 'branches' for each customer. We use git to manage the workflow and a github account which helps a lot for centralisation. Customers versions are juste differents settings with

Re: Django SAAS projects

2009-10-19 Thread hcarvalhoalves
On Oct 16, 7:09 pm, Savy wrote: > Hi Djangonauts, > > I am developing  a Django project (with a few pluggable apps). > > I want to offer this project as a SaaS (something like 37signals.com). > > i.e: customer1.product1.com , customer2.product2.com etc > > product1 could

Re: Django SAAS projects

2009-10-18 Thread Mohammad Tayseer
roups.com> Sent: Friday, October 16, 2009 11:09:16 PM Subject: Django SAAS projects Hi Djangonauts, I am developing a Django project (with a few pluggable apps). I want to offer this project as a SaaS (something like 37signals.com). i.e: customer1.product1.com , customer2.product2.com etc pr

Re: Django SAAS projects

2009-10-18 Thread Tomasz Zieliński
There is also second issue to consider - single database is a potential security threat (one customer might be able to access data of second customer if you have a bug in your code). -- Tomasz Zielinski, http://pyconsultant.eu --~--~-~--~~~---~--~~ You received

Re: Django SAAS projects

2009-10-18 Thread Jani Tiainen
Savy kirjoitti: > > > Hi Djangonauts, > > I am developing a Django project (with a few pluggable apps). > > I want to offer this project as a SaaS (something like 37signals.com). > > i.e: customer1.product1.com , customer2.product2.com etc > > product1 could be the basecamp product2 could

Django SAAS projects

2009-10-16 Thread Savy
Hi Djangonauts, I am developing a Django project (with a few pluggable apps). I want to offer this project as a SaaS (something like 37signals.com). i.e: customer1.product1.com , customer2.product2.com etc product1 could be the basecamp product2 could be highrise and so on. I want to know