update readme

This commit is contained in:
pooya
2026-02-19 16:39:21 +03:30
parent 87b9e0273e
commit 24dd8532b8

View File

@@ -1,4 +1,4 @@
# 🚀 Project Setup Guide # 🚀 Robin Network Server Setup
Follow these steps to run the project locally. Follow these steps to run the project locally.
@@ -63,7 +63,25 @@ npm run migration:run
--- ---
## 5Start the Application ## 5Create 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 ```bash
npm start npm start