From 24dd8532b84187c193f193aff37a778901e22afe Mon Sep 17 00:00:00 2001 From: pooya Date: Thu, 19 Feb 2026 16:39:21 +0330 Subject: [PATCH] update readme --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85d47c9..6815fbc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 🚀 Project Setup Guide +# 🚀 Robin Network Server Setup Follow these steps to run the project locally. @@ -63,7 +63,25 @@ npm run migration:run --- -## 5️⃣ Start the Application +## 5️⃣ Create Admin User Manually + +After migrations are completed, create an admin user manually in PostgreSQL. + +Example: + +```sql +INSERT INTO users (id, username, email, role) +VALUES ( + 'a random uuid', + 'your_username', + 'your_email@example.com', + 'admin' +); +``` + +--- + +## 6️⃣ Start the Application ```bash npm start