HN user

burcs

922 karma

building outerbase

Posts10
Comments133
View on HN

yeah you should definitely not be getting rate limited, sorry this is annoying you're not the first to report i will dig in.

as far as support, i know there is a huge effort going on right now to improve response time and support in general, also I'm not as active in discord as I ought to be there's just so much noise, feel free to ping me on there directly if I can help brandon/@ygwyg. can't promise it'll be an instant response but I will respond

sorry to hear that's been your experience. i actually joined through an acquisition about a year ago and one of the main things we've been focused on is the dashboard and overall dx.

sadly "hostile ux" is a phrase i've heard more than once and we're working hard to improve. if you're open to it, would love to hear more about the issues you've be running into

Happy to answer any questions, super excited to be part of the team and help make Cloudflare's developer experience better. Not just bells-and-whistles ;)

Thanks for posting this!

We are super excited about the opportunity we have in front of us at Cloudflare, happy to answer any questions y'all might have.

That was a rough read, not really sure I understood the authors point. It was kind of all over the place, bad because AI, bad because not really open-source, bad because doge...

Only thing I really left with was the author doesn't like the word gum. Seems like a hit piece on Sahil? Pretty sure the open-source part of Gumroad has been in the works for a while.

Hi I'm one of the founders of Outerbase, just want to clarify a few things, seems like you might have some wrong information on Outerbase.

Big fan of Mathesar by the way!

1. We have a incredibly powerful CRUD editor on our table, in fact you can drag and drop and select multiple columns & rows, I haven't seen many other DB editors support this.

2. We allow you to pick foreign key constraints from a dropdown as well.

3. This is true.

4. Outerbase is open-source with more and more features heading into our core offering there. https://github.com/outerbase/studio

We support adjusting the JSON config file so you can update it with your credentials!

outerbase.json { "driver": "mysql", "connection": { "database": "chinook", "host": "localhost", "port": 3306, "user": "root", "password": "123456" } }

We could definitely do something like that, question for you if you've used any sort of AI -> SQL generator do you think it replaces the need for something like a visual builder? Or is it still nice to be able to construct them with visual blocks?

Yeah you can definitely do that, I referenced how we do it in another comment. The electron app and running it locally allows you to use TCP protocol which isn't available directly in the browser.

It's mostly just a nicely bundled way to run it if you aren't very technical but still want a easy to use database client.

You can also run commands like this to connect to your database if you want:

npx @outerbase/studio \ --port=5000 \ --user=admin --pass=123 \ mysql://root:123@localhost:3306/chinook

Thank you for explaining this so clearly. We were very cautious in choosing the license for this exact reason!

We love open-source and want to give back fully to the community. The AGPL felt like the most open license that still protects against outright theft — something we’ve unfortunately experienced in the past.

Thank you, I hope you can stop building those and use us instead as well :)

I've never used Firestore directly, but I did see Firebase's recent announcement about Data Connect. It seems like it could act as a bridge to bring your data into Outerbase. Do you think that would work?