Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.25 KB

README.md

File metadata and controls

64 lines (47 loc) · 1.25 KB

job-portal

DASS(design and analysis of software systems) (a mern stack app) | spring 2021

Installations

Node

  • 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

MongoDB

Install the community edition here.

React

npm install -g create-react-app

Running the code

  • 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.

Contributions:

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.

can work on:

  • 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.