From d4c5037606d78b7611aa1c399fcaee2735d0ae25 Mon Sep 17 00:00:00 2001 From: abdulhade Date: Mon, 7 Apr 2025 12:54:28 +0300 Subject: [PATCH] Explained types of users in `README.md` file. --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f5b40dc..6ce0261 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,8 @@ This repository includes: - [Test your setup](#test-your-setup) - [Using the `status` command:](#using-the-status-command) - [Using the `test_setup` command:](#using-the-test_setup-command) - - [Create your first admin user](#create-your-first-admin-user) + - [Run it and make it available to use](#run-it-and-make-it-available-to-use) + - [Create your first admin user](#create-your-first-admin-user) ## Getting Started @@ -220,7 +221,13 @@ Config file loaded successfully. -## Create your first admin user +## Run it and make it available to use + +First make sure it is running by calling the `db-middleware start` command. + +### Create your first admin user + +We have two types of users, admin and regular (called just user), the admin can add/update/delete database connections, and create/delete normal users. We recommend creating one admin user, and use that to create normal users via the API. @@ -238,6 +245,8 @@ Enter role (admin/user): admin +-----------------------------------------------------------------------------+ ``` +You don't need passwords for this, just the username and role. + ---