Live data from Hacker News

Show HN: SaaS application boilerplate

github.com

51–60 of 78 posts

Re: Show HN: SaaS application boilerplate

#52
post #46

Ha! This is awesome! I did something similar in 2016, and called it something silly like SaaS-in-Box, but after integrating security, and Blueprints and multi-tenancy and caching, and ... (I do think I ran into some problem with blueprints, actually), ... I finally decided I was inventing Django-on-Flask and that it probably didn't solve as many problems as I originally thought it would. BUT! That said - I think ther…

Thanks! It's a pity you gave it up, maybe you could create something really cool.

Re: Show HN: SaaS application boilerplate

#54
post #30

I appreciate the efforts being done in this space, but I don't think this is launch ready yet. It doesn't include some of the things that make a SaaS a SaaS, and not a typical user sign up web app with admin panel. For a SaaS framework you usually need at least: integration with a billing provider (almost always Stripe nowadays), web hook handling for a bunch of services (or a generic way of handling webhooks easily)…

Thanks a lot for the great comment. I totally agree about the functionality. Stripe integration will be the next feature I will add. And even so, I still believe this boilerplate can save you at least a week of work. I already used it for my other projects and I can confirm it. Dashboard UI is already done and I'm going to add more modules/components to make it easier to use. Do you have any suggestions what it would…

You should really consider picking a standard open source license if you want people to try your work out. I personally wouldn’t consider building a business off of a license like that.

Re: Show HN: SaaS application boilerplate

#55
post #30

Earlier quoted context omitted.

Thanks a lot for the great comment. I totally agree about the functionality. Stripe integration will be the next feature I will add. And even so, I still believe this boilerplate can save you at least a week of work. I already used it for my other projects and I can confirm it. Dashboard UI is already done and I'm going to add more modules/components to make it easier to use. Do you have any suggestions what it would…

You should really consider picking a standard open source license if you want people to try your work out. I personally wouldn’t consider building a business off of a license like that.

Yeah, I'm thinking the same. I just didn't really have the time to put some standard one - was busy with all these comments!

Re: Show HN: SaaS application boilerplate

#56
post #30

Earlier quoted context omitted.

Thanks a lot for the great comment. I totally agree about the functionality. Stripe integration will be the next feature I will add. And even so, I still believe this boilerplate can save you at least a week of work. I already used it for my other projects and I can confirm it. Dashboard UI is already done and I'm going to add more modules/components to make it easier to use. Do you have any suggestions what it would…

You should really consider picking a standard open source license if you want people to try your work out. I personally wouldn’t consider building a business off of a license like that.

Okay, I put MIT license. I found this type of license is most appropriate for this product.

Re: Show HN: SaaS application boilerplate

#58
post #38
post #18

Earlier quoted context omitted.

Fixed! But I still left the part about not using the code for purposes prohibited by law...

It's (presumably) redundant for what you intend it for (you can't grant a right to break the law..) - but can still be troubling. Which law(s), which jurisdictions ? Copyright law is fairly international through trade agreements - which is one of the reasons copyleft was such a great hack.

I changed all those words to just MIT :)

Re: Show HN: SaaS application boilerplate

#59

I appreciate the efforts being done in this space, but I don't think this is launch ready yet. It doesn't include some of the things that make a SaaS a SaaS, and not a typical user sign up web app with admin panel. For a SaaS framework you usually need at least: integration with a billing provider (almost always Stripe nowadays), web hook handling for a bunch of services (or a generic way of handling webhooks easily)…

Although there are literally dozens of tools out there that aim to facilitate SaaS, if you look at the definition of SaaS and what makes SaaS, SaaS. Things like “on demand” activation, licensing models, and resource management are the key definition points, not so much the nuts and bolts libraries needed behind the scenes.

I wrote a funcional specification for a SaaS provider platform about a month ago (see https://abstractionlayer.jamesbiv.tech/Abstraction%20Layer%2...) its initial chapters deal with the definition of SaaS.

Post reply on HN