A website which connects employers and candidates. Built using Django Framework and MySQL.
- Post job openings.
- Recieve applicantions on the job post with access to candidate's full profile and resume. And, select/reject them.
- Shortlist candidates for further rounds.
- Search for relevant candidates.
- Search through entire resume database and have access to all resumes.
- Build the profile with sills and attach resume.
- Search for jobs with various filters.
- Save a job post or apply for jobs.
- See the status of applications.
- Get relevant jobs.
- Create a python virtual environment
python -m venv ~/.virtualenv/udyog-venv
- Activate the environment
source ~/.virtualenv/udyog-venv/bin/activate
- Clone this repository
git clone https://github.com/Prajna-Ramamurthy/Udyog-Portal.git
- Install the required packages in the newly created venv as per requirements.txt
cd Udyog-Portal
pip install -r requirements.txt
- Go to the top level udyog project directory (where manage.py file is located)
cd udyog
- Create static files
python manage.py collectstatic
- Prepare migration files
python manage.py makemigrations
- Create migration files
python manage.py migrate
- Run the server
python manage.py runserver