An app that records various interview responses and publicise them.
Kindly follow contributing.md, if you want to lend a hand in making this project better.
#creating virtual env
mkdir project
cd project
virtualenv .
source bin/activate
#clone the directory
git clone https://github.com/arc9693/IntReview.git
#change directory
cd IntReview
#Install dependencies
pip install -r requirements.txt
#Do migrations
python manage.py makemigrations
python manage.py migrate
#Run server
python manage.py runserver