- Node.js (LTS recommended)
- npm (comes with Node.js)
cd frontend
npm install
npm run devThe frontend development server will start and be accessible on the port shown in the terminal (commonly http://localhost:5173).
cd backend
npm install
npm run devIf your backend uses a different start script (e.g.
npm start), update the command accordingly.
The backend server will start on the configured port (check .env or console logs).
Use the following credentials for testing purposes:
- Username:
test - Password:
test
⚠️ These credentials are for development/testing only. Do not use them in production.
- Make sure required environment variables are configured before starting the backend.
- Run frontend and backend in separate terminals.