We are team of developers making your hiring process easy.
Let AI handle it for you.
We provide Instant and automated workflow.
Our users spend around 50% less time screening candidates.
And provide 24/7 services
Google drive Link.
If you have any issues with the google drive link you can also visit the video on youtube.
This document describes how to set up your development environment to run and test MOLLY.
- Prerequisite Software
- Setting up the Sources
- Go to the molly directory
- To create table in database
- Starting the server
Before you can run and test MOLLY, you must install and configure the following products on your development machine:
# Install django through commond line.
pip install django
# Install pandas through commond line.
pip install pandas
# Install mysql client through commond line.
pip install mysqlclient
# Install cloudant through commond line.
pip install cloudant
# Install pyresparser through commond line.
pip install pyresparser
Clone or download the repository:
- Login to your GitHub account or create one by following the instructions given here.
- Download the repoository from here
- Open xampp-control.exe from your Xampp. And click on start button of MySql and Apache. After click on admin button.
- Create Database on phpMyAdmin with name as 'molly'.
# open the repository
cd molly
#open this molly file in terminal
python manage.py makemigrations
python manage.py migrate
#start the server
python manage.py runserver
#Goto home page to open it
http://127.0.0.1:8000/home
#ENJOY!