swsnu / swpp2020-team4

0 stars 2 forks source link

BuildStatus Quality Gate Status Coverage Status

swpp2020-team4

https://quant.cash

How To Run

1. Clone this repository

git clone https://github.com/swsnu/swpp2020-team4

2. Setup environment for running QuantCash Front & Backend

For now, these steps assume that you are using Windows 10 as all 4 members are developing under such environment.
Please move to 'front' directory, install npm modules with yarn, and start frontend server with yarn start

(1) setup virtual environment for backend
cd back
virtualenv venv
venv\Scripts\activate.bat
(2) run migration
manage.py migrate
(3) install necessary dependencies for backend
pip install -r requirements.txt
(4) setting up multi-threading environment for the backend

First, you need to have REDIS installed, and have it running in docker environment.

(~/back) 
(5) setting up celery and celery-beats

Open docker quickstart terminal and run following commands

From two other separate terminals, run two following commands