Skip to content

RajithaKumara/Best-Fit-Job-ML

Repository files navigation

Best-Fit-Job-ML

Build Status

This is Machine Learning part of Best-Fit-Job project. Best-Fit-Job makes a platform for job seekers to find jobs and employers to offer jobs easily. In order to fulfil this task, this system has portals for job seekers and people who offer jobs. Job seekers are able to add their knowledge, skills, attitudes and other extra attributes to their account. On the other hand, employers can add their job opportunities with expected skills. The output of this system is matching job opportunities with job seekers profiles and sending notifications to both parties.

Prerequisites

• Python version 3.6 installed locally (installation guides for OS X, Windows, and Linux)

• Pipenv installed locally (installation guides)

Usage

First clone the repository.

$ git clone https://github.com/RajithaKumara/Best-Fit-Job-ML

Go to inside directory.

$ cd Best-Fit-Job-ML

Install dependencies.

$ pip install -r requirements.txt

Install virtualenv.

$ pipenv install

Create model tables in database. Read more...

$ python manage.py migrate

Start Django development server at localhost:8000 (default). Read more...

$ python manage.py runserver

or

Start the development server using Heroku CLI. Read more...

# on Microsoft Windows system
$ heroku local web -f Procfile.windows
#or
$ python manage.py runserver

#on a Unix system
$ heroku local web
#or
$ gunicorn app.wsgi