This project is a fullstack web application with:
- ⚙️ Backend: Express.js (Node.js)
- 💻 Frontend: React + Vite
🌐 root /
-
├── backend/
│ └──src
-
├── frontend/
│ └── src
Make sure you have the following installed:
Install dependencies for both backend and frontend:
# Backend setup
cd backend
npm install
# Frontend setup
cd frontend
npm install
# In the root directory
npm install
# Both running concurrently
npm run dev
# Both running concurrently
Frontend: http://localhost:5173
Backend: http://localhost:5000