SQL-files-as-REST-endpoints microservice. Drop a .sql file, get an HTTP
endpoint. Rust rewrite of the Bürokratt Resql
Spring Boot service.
Version: 0.1.0-alpha.2
License: Apache-2.0
Container: docker.io/turnerrainer/resql:0.1.0-alpha.2
The shipped image wires two SQLite datasources (users and audit)
so multi-database routing works out of the box.
docker run --rm -p 8080:8080 turnerrainer/resql:0.1.0-alpha.2
curl "http://localhost:8080/users/hello?name=world"
# [{"greeting":"hello from users db, world!"}]
curl "http://localhost:8080/audit/tail?n=42"
# [{"entry":"audit entry 42","rowId":42}] ← different backend, same server- Book — install, configure, extend.
- Design doc — what Resql is and isn't.
- HANDOFF — entry point for the next contributor.
- Standards — project rules on top of the ecosystem baseline.
- Security disclosure — private channel for vulnerabilities.