Skip to content

JobPortal is a free and open-source job hunting and recruiting solution build with React, Node, Express, MongoDB and TailwindCSS

License

Notifications You must be signed in to change notification settings

drbarzaga/JobPortal

Repository files navigation

Job Portal

Job Portal is an free and open source platform, designed to help job seekers find suitable employment opportunities and employers post job listings efficiently. build with React, Node, Express, MongoDB and TailwindCSS.

Features

  • People can register as job seekers, build their profiles, and look for jobs matching their skill sets.
  • Users can upload their existing resumes. If they do not have one, they should be able to fill out a form and have a resume built for them.
  • People can apply directly to posted jobs.
  • Companies can register, post jobs, and search job seeker profiles.
  • Multiple representatives from a company should be able to register and post jobs.
  • Company representatives can view a list of job applicants and can contact them, initiative an interview, or perform some other action related to their post.
  • Registered users should be able to search for jobs and filter the results based on location, required skills, salary, experience level, etc

Screenshots

Sign In

image

Sign Up

image

Forgot Password

image

Home Page as Guest

image

Tech Stack

Getting Started

Prerequisites

Here's what you need to be able to run Job Portal:

  • Node.js (version>=18.18.0)
  • Docker

1. Clone Repository

git clone git@github.com:drbarzaga/job-portal.git
cd job-portal

2. Environment

Client Environment

You need to create a .env file inside the client folder, and define the following env variables there:

VITE_API_URL=http://localhost:5555/api/v1

Server Environment

You need to create a .env file inside the server folder, and define the following env variables there:

PORT=5555  #API -> http://localhost:5555
NODE_ENV=development
JWT_SECRET=yourJwtSecret
MONGO_URL=mongodb://localhost:27017/job-portal #With docker use this mongodb://job-portal-mongo:27017/job-portal

2. Running in docker (Recommended)

docker-compose up

3. Running locally

Using npm

npm install
npm run install:all
npm run dev

Using yarn

yarn install
yarn run install:all
yarn run dev

If you're going to run the application locally, make sure you have MongoDB installed on your computer and add the MONGO_URL environment variable to the server's .env file.

4. Open App in your browser

Visit http://localhost:5137 in your browser.

Contributing

Job Portal is an open-source project and we welcome contributions from the community.

If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are warmly welcome.

Our Contributors ✨