Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arc9693/intreview

An app that records various interview responses and publicise them. Hosted at
https://github.com/arc9693/intreview

backend-webdevelopment css django front-end-development html js python3

Last synced: 4 days ago
JSON representation

An app that records various interview responses and publicise them. Hosted at

Awesome Lists containing this project

README

        

# IntReview
[![Build Status](https://travis-ci.org/arc9693/IntReview.svg?branch=master)](https://travis-ci.org/arc9693/IntReview)
![Python Versions](https://img.shields.io/pypi/pyversions/django.svg?style=flat)
[![Join the chat at https://gitter.im/NIT-dgp/General](https://badges.gitter.im/NIT-dgp/General.svg)](https://gitter.im/NIT-dgp/General?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![GSoC Heat](https://img.shields.io/badge/GSoC%20Heat-2019-orange.svg)](https://nitdgpos.github.io/gsoc_heat)


![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)

![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)

An app that records various interview responses and publicise them.

## Contribution guidelines
Kindly follow [contributing.md](contributing.md), if you want to lend a hand in making this project better.

## Build Setup

```bash
#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
```