Welcome to RestBase’s documentation!¶
RestBase provides the ability to collect all databases in one place, providing a convenient way to differentiate access to data within databases and quickly add new users. All communication with the server takes place via REST requests. Access differentiation is based on the paradigm of unique access keys (tokens).
To get started, you need to download the docker image from the docker hub and run it.
docker run -p 54541:54541 restbase/restbase-server
To add volume user following commands.
docker volume create restbase
docker run -p 54541:54541 -v restbase:/var/lib/postgresql/data restbase/restbase-server
After starting the docker, you need to generate an administrator token using GetAdminToken Request.
Description of the next steps in Quickstart.