chore: update backend port to 5008 and frontend to 3008

This commit is contained in:
Kailasdevdas
2026-04-23 13:30:11 +05:30
parent 39e5590dd8
commit bb98ddf514
6 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ Make sure you have installed:
```env
DATABASE_URL=postgresql://user:password@db:5432/mydb
PORT=3000
PORT=5008
JWT_SECRET=your_secret_here
CORS_ALLOWED_ORIGINS=http://localhost:5173
@@ -51,7 +51,7 @@ EMAIL_FROM=admin@example.com
### Frontend (`frontend/.env`)
```env
VITE_API_URL=http://localhost:5000/api
VITE_API_URL=http://localhost:5008/api
```
---