Good advice. People rarely want a platform, especially from a new entrant. They want an aspirin tablet.
Once they are hooked you can expand.
A sticky platform will be stickier than a sticky product. But that doesn't mean every product should be made into a platform.
FB started by “selling” access to the freshman* picture book. They only became a platform later.
* hopefully a less sexist term is used these days.
VCs incentives may not be aligned with your incentives. They are looking for Unicorns (Decacorns? Centocorns?) and are prepared to have _you_ take on a high risk of failing to improve their 1:100 successful investment upside calculations. You building a comfortable 8 figure revenue and 7 figure profit company over 5 or 10 years is basically a failure in their eyes.
For every Facebook or AWS, there are a 100,000 profitable "product companies" and probably a million successful-enough "lifestyle businesses".
If you want to take on the risk and shoot for the stars, sure - follow that VC advice. If you'd personally be happy with an 8 figure exit or a high six figure salary for as long as you want it, you can reduce your risk of failure substantially by _not_ following that advise to the letter.
Except Facebook started as a product.
That being said, a good stack that you know well can affect how quickly you build and how quickly you can adapt the product to changing market conditions.
So here's what we use:
- ASP.NET CORE( - Primarily ASP.NET Razor Pages for the web app. ASP.NET MVC Controllers for the internal and external APIs we support.
- C# - We try to stay on the latest version. The recent pattern matching improvements alone make our code so much cleaner.
-
[HTMX](https://htmx.org/)\* - for front-end. We're not at the point where we feel we need a heavyweight front-end framework like React. We like the 37signals approach of shipping "HTML over the wire". We're also big on Web Components. That's a result of our [GitHub heritage](https://github.blog/2021-05-04-how-we-use-web-components-at-...).- TypeScript - for our front-end JS. This is a recent addition. Most of our JS is still ES6.
- Azure Database for PostgreSql - PostgreSql is rock solid and great for storing all kinds of data.
- Azure Functions - we support three types of custom code skills that customers can use to enhance and customize the bot : JavaScript, C#, and Python. We run these in Azure Functions.
- App Insights - We use this for logging.
- Azure Managed Grafana - We have a nice Grafana dashboard based off our App Insights logs that helps us get a birds-eye view of how everything is doing.
- Azure App Configuration - For feature flags.
As you can see, it's pretty heavily Microsoft based. Part of that is my background. The other part is we got a lot of Azure Credits when we joined the [Microsoft for Startups](https://www.microsoft.com/en-us/startups?rtc=1) program. So it made fiscal sense for us to stick with Azure.
I do like that we can manage everything in a single portal. But some of these tools are not best-in-breed as we will be looking at other options down the road.
Wow, Microsoft must have really drowned you with free credits to choose Azure. We also tried Azure 2.5 years ago when my small team (3 founding devs) started with our startup, but after 6 months of constant problems, broken services, outages, and completely out of the blue unexplained service failures we had to give up. We wasted a lot of engineering time on bending our app to Azure's needs and still had issues. We eventually migrated to Google Cloud and hadn't had any problems since then. I am not kidding, the first 6 months we must have spent at least 70% of our time on issues which we wouldn't have had on AWS or Google. Azure really under delivered on all fronts. Things looked extremely promising and then when we used a service we realised that most useful (often necessary) features were behind extremely expensive tiers and then it meant we had to either take huge hits on our hosting costs or build weird workarounds. We didn't want to go against Azure and often chose to pay, but even the higher tiered services then started to act up and often result in totally unexpected behaviour. Good luck to you though!
One of the lessons I omitted (because the post was getting a bit long), is we started off as cross-platform (Slack, Teams, and Discord) but in the end we decided to focus on a single product.
In retrospect, we've struggled to decide if that's a lesson to learn. Should we have started with a single platform? It certainly makes it much faster to build for a single platform. But at the time, we really thought the cross-platform chat-ops would be a distinguishing trait!
Anyways, I hope you enjoy the post!
> Balance your early engineering and infrastructure with achieving Product Market Fit
No, not really, you should focus way more on the latter really. We devs love the first tho. e.g. comment from your original post 12mo ago: "Super stoked to see you launching after working on it for so long!" -> how much of the code you've written was necessary to come to the realization you eventually came to? Based on the way you described your trouble selling, seems like very little to none.
- Azure seems like a bad choice (running out of capacity lolwut)
- corollary to above: don't get too attached to where you worked. Seems like your original idea was heavily based on something u saw internally. Just because something works well at one (usually large) company you worked at doesn't mean it serves a widespread market need (I've been burned by this).
Just some thoughts, hopefully your pivot is successful!
You're absolutely right. I think I should have phrased this as "Don't completely neglect your early engineering and infrastructure." Some choices could inhibit our ability to achieve product market fit.
> - Azure seems like a bad choice (running out of capacity lolwut)
I think the pandemic created supply chain problems that affected a lot of companies. There's a lot of reasons to like Azure for me. I'm familiar with it. They focus a lot on developer experience. But this one issue really hit hard and definitely makes me want to be more flexible in how we deploy to the cloud.
> - corollary to above: don't get too attached to where you worked.
Ha! Yeah, we really loved the GitHub way of working. Turns out, GitHub had a unique culture and it doesn't necessarily translate over to whole market. I wish I had included this in the post.
> Just some thoughts, hopefully your pivot is successful!
Much appreciated!