▲ | mooreds 2 days ago | |
I wrote 5k words on the benefits and challenges of a self-hostable product[0] which may be useful to read. At FusionAuth, my employer, we have had both self-hostable and cloud versions for over 6 years. We started out with the self-hosted version and then added a cloud offering. I'd start out with the business case. I'm not sure what "credential collection" is, but think about why your customers might want to self-host. Common reasons include: - data sovereignty (legal responsibility towards users from a geography) - data locality (data location) - CONTROL (I put in all caps because that is an overriding reason) - cost (esp if they have existing infrastructure your system can run on) Devtools are a natural fit for self-hosting, as are other tools that target SREs, because the user/buyer is the operator and understands what they are getting into. Is the same true for "credential collection"? I dunno. As far as pricing, we charge for features and support in one dimension, then hosting in another. (So if you self-host, the second dimension goes to zero.) That has been confusing to our audience[1]; one commenter said "your pricing sucks" :) . We're working to make that simpler, but it's a tough road because it is atypical. Regarding development tasks, have your supported platforms and dependencies be as few as possible (we only require a MySQL or PostgreSQL database and an optional Elasticsearch/Opensearch installation). Margins are way higher on self-hosted if you charge for features, but support will be much tougher. Build in some telemetry (in a transparent way your users can trust) to help your support team. Be prepared to hop on some video calls because sometimes telemetry won't give you enough info. Also be prepared to draw some lines in the sand: is helping someone troubleshoot their proxy configuration in front of your software included? How about their database performance? Product decisions will be harder too, but telemetry can also help there[2]. 0: https://fusionauth.io/blog/building-self-hostable-applicatio... . You can read more discussion about this post here: https://news.ycombinator.com/item?id=42527887 1: https://news.ycombinator.com/item?id=41269089 2: Here's an example of the telemetry we collect: https://fusionauth.io/docs/get-started/download-and-install/... . We try very hard to know nothing about our customers' users to respect our customers privacy. |