Alexandro Martínez

SaasRock - The SaaS building framework

Build your MVP with +25 out-of-the-box SaaS features: Auth, Admin portal, App dashboard, Stripe Subscriptions, Workflows, Blog, Knowledge Base, Entity Builder (CRUD and API), Events, Email Marketing, Page Blocks, Notifications, Metrics, Cache, and more.

Add a comment

Replies

Best
Alexandro Martínez
Hey Hunters 😁! I've been working on this Remix SaaS boilerplate for the past 20 months, it's about time I launch it. SaasRock is a full-stack SaaS starter kit with features structured into 3 main sections: 1. BUILD 🛠 - App Portal - Pricing Plans - Workflows - Notifications - Entity Builder 2. MARKET 📈 - Marketing Pages - Blogging - Analytics - Knowledge Base - Email Marketing - Page Block Builder 3. MANAGE 🔧 - Admin Dashboard - Accounts and Users - Authentication - Roles and Permissions - API - Metrics + Cache - Events + Audit Trails - Onboarding + Feature Flags Stack: Remix v2 + Vite, Tailwind CSS, Prisma, with integrations for Stripe, Postmark and Novu. And the cherry on top: shadcn/ui integration. I wanted to build Help Desk and Affiliates & Referrals before launching, but perfection is the enemy of done.
Alexandro Martínez
@avalonxt Thank you :D... Yes. You have 3 main parts: front pages (for anon users and marketing), /app/:tenant pages, and /admin pages. I've built 5 different type of B2B apps (you can see them at /showcase). The last SaaS I built is Indexer.so, a 3-day project (see it at /saas-templates/google-page-indexer). And I'm currently working on a Directory Listing Builder template/youtube-series, and my focus this year is to release as many SaaS templates as possible, covering different SaaS types.
Harrison Johnson
@avalonxt @alexandromtzg the showcase is super helpful! Subscribed to your YouTube for more content :) SaaSRock is a really powerful concept and great for PH community - excited to play around with this and I dig the positioning around MVP'ing something as a use case.
Zama Khan Mohammed
Love this! What are you future plans for SaaSRock?
Alexandro Martínez
@zama_khan_mohammed 1) SaaS templates, 2) building SaaS apps of my own will improve the codebase, 3) custom subdomains/domains, 4) Vercel, Cloudflare and more deployment provider docs (now with Vite), 5) more built-in features like Help Desk, 6) resolve/close the current 80 open issues 7) AI everywhere 8) … time is what I need!
Alex Dulub
Hey Alexandro, Impressive work on SaasRock! It's quite a comprehensive list of features you've got there, and it sounds like a massive time-saver for SaaS startups. The focus on building, marketing, and managing within one framework is super appealing. Out of curiosity, which feature was the most challenging to integrate? Keep up the great work, and I can't wait to see how Help Desk and Affiliates & Referrals turn out once you add them!
Alexandro Martínez
@alex_dulub The most difficult one for me was the Entity Builder, it started as a simple feature for a Expense Request app I was building and it required custom properties. I thought, why not built a whole autogenerated list, new, edit, overview, share, comments... forms? and while I'm at it, autogenerated API and API docs, with relationships (one-to-one, one-to-many) integrated. Turned out to be a super complex no-code "form" builder for app tenants. But I love it! Even though no-code hits a wall at a certain point, I move quickly (watch my latest Directory Listing Builder where I use it) Thanks for the support :D
Girdharee Saran
Congrats on the launch @alexandromtzg ! SaasRock sounds like a game-changer for SaaS developers! I'm curious, how does SaasRock handle scalability with such a wide range of features? Also, are there any plans for future updates or additional features?
Alexandro Martínez
@10xmarketer By throwing more RAM to your server 😅! On a serious note, 1) saasrock has a build-in metrics tracker to analyze performance in your routes/functions/actions, 2) everything that can be cached will be cached eventually, 3) I'm already exploring a true multi-tenant architecture (database-per-tenant). I have a few very succesful clients with over 1M API requests/month, so there are frequent updates, as long as burnout doesn't get to me that is 😬. 1. Built-in Help Desk and Affiliates 2. More SaaS templates to cover different SaaS types 3. More AI 4. More Youtube tutorials I'm open to anything as long as it's what the majority wants. For example, I was about this close 🤏 to migrate everything from Prisma to Drizzle ORM, but more than 50% voted to stick with Prisma. And everyone screamed to get shadcn/ui integrated, so I managed to put it in this 1.0 release.
Harish Pandian
Great for founders putting to feather their verity SAAS product version.. to get it up and running quickly
Sarah
Hello and congratulations on the launch. sounds super interesting. I'm really looking forward to trying out your product :)
Alexandro Martínez
@sara_with_h Great Sarah! You're also welcomed to join the discord server to clear any questions you may have.
Petr Havertz
Congrats on the launch
Ahmad Sadeddin
This looks great! Having built a number of products, I can definitely see the value here. Have you thought about SSO and Oauth options?
Alexandro Martínez
@ahmad_sadeddin Thanks! I have not touched SSO although it was on my plans since the beginning (2 years ago), until I need it in one of my saas apps I’ll built it! As for Oauth GitHub and Google are implemented, but adding a new provider it’s fairly easy with the remix-auth package.
Ahmad Sadeddin
@alexandromtzg makes total sense! Thanks :)
Congratulations for the PH launch! Looks great @alexandromtzg! Thanks for doing this!! Can't wait to get hands-on with this!! Few questions: * What security tests are run on this (SAST, DAST, PT)? If not, could you add that to your list? * What all will I get once the license is purchased? * What's the typical learning curve? What should one know before hand to become productive with this? * Does this come with any coding standard recommendations and enforcing of these standards (linting rules, static code analysis rules etc.,) * What's the application architecture? * How straightforward will it be to deploy to AWS as well as use other AWS services (like Cognito for authentication)?
Alexandro Martínez
@productpie Thank you :D 1. No security tests! 2. You'll get access to the repository (depending on the edition) and get 1.x free bug fixes / updates 3. I would say you need to use it full-time at least a week to get a grasp of it. You can see how I build things in the youtube channel youtube.com/@saasrock or follow one of these "tutorials": https://saasrock.com/build-marke... or https://saasrock.com/docs/articl.... 4. None, I was going to do Clean Architecture (similar to my previous boilerplate NetcoreSaas), but ended up with no architecture. 5. I haven't deployed to AWS but SST is on my list for Deployment providers to make a tutorial on.
@saasrock @alexandromtzg thanks for the response! Looking forward to the tutorial on SST deployment. Just One week of lift is awesome! That speed is important for us. Curious to learn more about the no architecture choice. And, could you help on the question regarding coding standards.
Alexandro Martínez
@saasrock @productpie The no architecture thing was not really a choice, it was a consequence of shipping features as fast as possible, see the full changelog at https://saasrock.com/changelog. I've been wanting to do refactoring to improve at least folder structure, but I would have launched in another year haha. So no coding or architecture standards. But you can see the overall code structure in https://github.com/AlexandroMtzG... (which is saasrock v0.0.1), my way of coding I mean.
Hai Ta
I really like this product and its features. Congratulations on your launch on Product Hunt guys!
Bob WIlsey
SaaSrock proves to be an excellent solution for developers, founders, and marketers aiming to swiftly and effortlessly build and launch their SaaS platforms. The pre-built features offer a significant advantage, and I'm excited to see what additions Alexandro has in store.
Larry Hartman
Love how comprehensive it is
Chris Kluis
I'm biased because Alexandro and I have collaborated on this product... But with saasrock, Alexandro & I were able to spearhead building a very sophisticated saas product in a matter of a 3-4 month client engagement. It blew my mind what we were able to build and how fast we were able to build it.
Alexandro Martínez
@ckluis Thanks for your quality advice Chris! Now that 1.0 is out, we might want to do a Next.js edition 😛… the Build, Market, and Manage vision you suggested cleared the path for a top-tier SaaS building solution 👌
Ajoy Das
Great launch 🚀! I love the idea.
Munu Kanrar
Thanks for your quality advice Chris I'm biased because Alexandro and I have collaborated on