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 startTo recreate the database:
- Open MySQL Workbench.
- Create a new schema (e.g.,
placement_db). - Import
backend/db/Dump.sql. - Start backend server.