Show HN: MVP done, now what?
I've spent about the past 6 months or so working on what I think of as 'database as a service'. Essentially hosted Sqlite with CORS support so users can post from anywhere, and execute queries saved on the backend. One of the things I'm going for is a completely in browser development experience, so there's nothing to install, the user simply uses the UI to create and edit queries and admin their database. One of the most basic uses would be posting form data from a static HTML page:
https://www.lite-engine.com/blog/post_form.html
I've posted it here before and didn't get much feed back. So I've deferred implementing any more features and wrote a bunch of documentation and blog posts. Kind reader, how would you characterize a service like this? Is Sqlite a deal breaker? Would a different database implementation be more appealing? Are there any other features that would improve the appeal of the service (ie static file hosting)?
6 comments
[ 3.0 ms ] story [ 27.8 ms ] threadI don't really consider someone hosting their own servers as my target audience, unless their looking for something like an offsite database to post telemetry to or something similar. I see users of my service being people doing serverless and Static Web folks.
This seems like it could be a key part but I'm wondering what other things a developer could tie into the get the entire "serverless" platform.
So, you could use a service like netlify, neocities, or even github pages to host your HTML, CSS, and javascript, and make CORS calls to lite-engine.com for the backend. Single page apps with no server. I think it's possible with Firebase, but I don't see anyone doing it, and I personally prefer to work with SQL for larger systems, I'm betting others do as well.