doc: update readme

This commit is contained in:
Kailasdevdas
2026-04-23 13:07:40 +05:30
parent 876c966b17
commit 39e5590dd8
+8 -1
View File
@@ -51,7 +51,7 @@ EMAIL_FROM=admin@example.com
### Frontend (`frontend/.env`) ### Frontend (`frontend/.env`)
```env ```env
VITE_API_BASE_URL=http://localhost:5000 VITE_API_URL=http://localhost:5000/api
``` ```
--- ---
@@ -64,6 +64,13 @@ VITE_API_BASE_URL=http://localhost:5000
docker compose -f docker-compose.dev.yml up --build docker compose -f docker-compose.dev.yml up --build
``` ```
## Create User
```bash
docker exec -it gg-backend-api-backend-1 node src/utils/createUser.js <name> <password> <role>
```
--- ---
### Stop containers ### Stop containers