- Clone the repo
cd sinfo
- Open 2 terminal tabs
1. Frontend:
cd client
to move into the client directoryyarn
to install the dependenciesyarn start
to launch the development server- wait for the web page to launch
2. Backend (from root):
-
If you do not have
pip
for python already installed, install it following this link. Then, install virtualenv aspip3 install virtualenv
-
python3 -m venv venv
for a virtual environment within the directory -
source venv/bin/activate
(in windows, use the command line to move to the directoryvenv\Scripts
and then typeactivate
). -
pip install -r requirements.txt
to install the required packages -
python3 app.py
to launch the backend server
3. Data Science (from root):
- Steps 1, 2, and 3 of the Backend part should have been done previously.
cd ds
to move into the data science directoryjupyter notebook
to launch the notebook
Review the contributing guidelines before you make your awesome contribution
This project is licensed under the terms of the MIT license. See LICENSE