Skip to content

An ultra cheap, SQL powered Firebase alternative

Notifications You must be signed in to change notification settings

samuba/hobostore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hobostore

An ultra cheap, SQL powered, Firestore alternative

hobostore logo

Explore it via UI: Hobostore Explorer

Endpoints:

  • GET /exec/ will execute the SQL query that was passed as path parameter and return the result
  • PUT /exec will execute the SQL query that was passed as text/plain body and return the result
  • POST /exec takes an application/json object with sql and params properties, executes the SQL query with the given params and returns the result
  • GET /info returns information on the DB
  • GET /dump dumps all the Tables

Example

curl -X PUT --data "SELECT * FROM Authors" -H "Content-Type: text/plain" https://%myHobostoreUrl%/exec

{ "result": [ { "firstname": "Heinz", "lastname": "Erhardt" } ] }

About

An ultra cheap, SQL powered Firebase alternative

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published