I think Retool continues in the trend of startups creating a formidable SaaS from something that is "obviously useful" to developers working with open source, and has become a "tool of the trade" for those developers, which reveals a wider market outside of that language/platform-specific open source niche. Examples here are:<p>- Real-Time Sys/App Dashboards (e.g. Graphite) => Datadog<p>- Collaborative Source Control (e.g. trac, hgweb) => GitHub<p>- Team Chat & Bots (e.g. IRC, ZNC, Hubot) => Slack<p>- App Error Tracking (e.g. Raven/Sentry project) => Sentry<p>In this case, the category is:<p>- Internal Admin Interface (e.g. Django Admin) => Retool<p>Like all of the above categories, this category is obvious in retrospect.<p>Every SaaS product/company I have ever worked on or advised has leveraged a Django admin interface. Or, the team wished it had one once they went into production with real users, if the technology choice _wasn't_ Python/Django.<p>If you have never personally experienced a the Django admin interface, you can read about it and see screenshots in this tutorial: <a href="https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Admin_site" rel="nofollow">https://developer.mozilla.org/en-US/docs/Learn/Server-side/D...</a><p>Essentially, it gives you a web-based interface, hooking into your existing user/group authentication model, for inspecting (and even altering!) live production data by introspecting your "Django Models". That is, your Python classes which represent your production SQL tables lead to (controlled!) admin interfaces that can edit those tables.<p>You can extend that admin interface using simple declarative configuration, such that you can build functional, SQL-aware tables and forms without writing a lick of UI code.<p>Based on the demo video, Retool is even more featureful than the Django Admin (although perhaps a little less extensible, since it isn't based on an open source framework). But, for anyone thinking to themselves, "Why didn't I think of this?" -- perhaps give some thought to the root problems beneath some of the open source tools you're using today, that could perhaps be turned into a widely-applicable SaaS tomorrow.