top | item 4135186

Ask HN: Is there an open source SAAS framework?

2 points| yashchandra | 13 years ago

If you want to build a SAAS app that has the usual components of user registration/subdomains, pricing, subscriptions etc, is there a framework out there for this ? preferably python ?

6 comments

order
[+] bmelton|13 years ago|reply
Too many of those features are particular to the application. You specifically mention using subdomains as user pages, but that's not necessarily how I'd do an SaaS app (or how too many others do). How do you bundle pricing and billing into an SaaS app beyond providing making certain libraries available? What payment provider are you using? Paypal? Braintree? Stripe? That depends on the subscription model you want to implement. Is your app a 30 day bill cycle? Paid yearly? Billed on the first of every month? Does it offer a 12-month prepay discount? What happens if account isn't paid up immediately? Is there a 30 day grace period? Is the account disabled immediately?

These are all decisions that each app has to make for themselves, and while sure, some of it could perhaps be rolled into a 'framework' that sits on Django or RoR, it's going to be difficult to get anywhere close to something most people wouldn't have to change.

As the target market for this would almost certainly be developers who can take a few libraries off of GitHub, tailor them to themselves, and have all the above functionality implemented within a day, I'd be surprised to find if something existed in the way you want.

[+] yashchandra|13 years ago|reply
Interesting points. Yes there are many parameters that could be application specific but i was wondering if some of them could potentially be provided as libraries ? for example, able to select subdomain style vs. others, set a billing cycle with certain parameters? etc. Or am I already too specific to be a framework ? Just wondered.
[+] holoiii|13 years ago|reply
Ruby on Rails is a big and popular one for Ruby. For Python, you can try Django.
[+] yashchandra|13 years ago|reply
sorry you misunderstood or I did not ask clearly. I am not looking for just a framework. I am alread aware of ROR and Django. I am looking for a framework that can help build Software-as-a-service (SAAS) applications.
[+] esente|13 years ago|reply
There are OpenShift, and I think Joyent open-source its SmartOS too.