Here's the very simple guide to run this project locally.
- Node.js & npm
- MySQL server
PlacementModule ├── frontend/ # React app ├── backend/ # Node.js + Express app ├── .gitignore ├── README.md
cd frontend
npm install
npm run start
cd backend
npm install
npm run start
To recreate the database:
- Open MySQL Workbench.
- Create a new schema (e.g.,
placement_db
). - Import
backend/db/Dump.sql
. - Start backend server.