Hacker News new | ask | show | jobs
by neetcode22 1407 days ago
Wow, you built all of this by yourself? Looks really good!

Also, have you heard of Supabase?

I am also interested in learning how you built your auth solution - like built from scratch or made using OS SDKs?

2 comments

Hey yes, I built it all myself. It's extremely difficult and lonely here. I discovered Hasura and it was a game changer. So I built some solutions on top of it called Hasura-batteries and open-sourced it. Now I am diving into integrating Stripe(No need to connect using the API and create a DB of products, we'll do it for you) as well as Auth providers like AWS Cognito.

You can check out a piece of the work here: https://github.com/RocketsGraphQL/hasura-batteries

And start a discussion there.

Yes I do know about Supabase. Rocketgraph is cheaper(I think they have some data limits whereas I offer a more inclusive single plan), more configurable as I provide Hasura with GraphQL(so easier to use, they don't provide GraphQL) and also they use deno runtime whereas we use simple AWS Lambda functions for your serverless functions so it's much more intuitive to write code. Basically you can hook any of your Github repos and every push to master is pulled by our server, compiled in a Node sand-boxed environment and deployed as a server-less function(I provide a public API endpoint you can use)

Thank you so much!!