Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/arc9693/intreview
- Owner: arc9693
- License: mit
- Created: 2018-09-24T21:59:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T21:02:00.000Z (over 2 years ago)
- Last Synced: 2023-06-02T09:26:23.565Z (over 1 year ago)
- Topics: backend-webdevelopment, css, django, front-end-development, html, js, python3
- Language: HTML
- Homepage: https://archana9693.pythonanywhere.com/
- Size: 192 KB
- Stars: 2
- Watchers: 1
- Forks: 11
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
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
```