- For Linux:
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install -y nodejs
- For Mac:
brew install node
Install the community edition here.
npm install -g create-react-app
- Run Mongo daemon:
sudo mongod
Mongo will be running on port 27017.
- Run Express Backend:
cd backend/
npm install
npm start
- Run React Frontend (open a different terminal):
cd frontend/
npm install
npm start
Navigate to http://localhost:3000/ in your browser.
You are invited to contribute to this project by adding a PR. If genuine, the changes would be approved and added to the master branch.
- rating feature (applicant should be able to rate job, similar to applicant rating by recruiter).
- login via facebook or google.
- show profile picture.
- download cv button on recruiter side,
- edit job has some minor problems.
- anything else you can find intresting, open for suggession.