Skip to content
This repository has been archived by the owner on Jun 6, 2020. It is now read-only.

Setting Up the App

Arpan Mangal edited this page Jun 24, 2018 · 1 revision

Setting Up the app

After cloning the repository, run either using:

Anaconda :

$ conda create -n rvs python=3
$ source activate rvs
$ pip install -r requirements.txt

Virtualenv (python 3):

$ virtualenv ReviewSystem
$ . ReviewSystem/bin/activate
$ pip install -r requirements.txt
$ touch review_project/ratings/migrations/__init__.py

Running the app locally

Setting up Database models:

$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver

Running the app:

$ python manage.py runserver
Clone this wiki locally