Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 446 Bytes

File metadata and controls

23 lines (17 loc) · 446 Bytes

Getting started with development

Both the Node.js frontend and Python-Flask backend servers will need to run simultaneously.

Running the backend
make download
virtualenv -p python3.6 venv
source venv/bin/activate
pip install -r requirements.txt
python -m backend

It's running on http://localhost:5000/. The main page gives examples of the endpoints.

Running the frontend

cd frontend
npm install
npm start