Skip to content

Latest commit

 

History

History
38 lines (20 loc) · 1.12 KB

SETUP.md

File metadata and controls

38 lines (20 loc) · 1.12 KB

Setting up your development environment for this Nokia Health to Open Humans data transfer app

Work through this guide to get this application running on your own machine

Setting up local environment

Install Heroku CLI:

macOS:

$ brew install heroku/brew/heroku

Linux:

$ wget -qO- https://cli-assets.heroku.com/install-ubuntu.sh | sh

Windows:

Click the link and choose an installer to download

Install RabbitMQ:

$ brew install rabbitmq $ brew services start rabbitmq

To set it running on very popular Ubuntu and other Debian based systems, it will likely be started for you after you install the package, but can also start it manually with:

$ sudo rabbitmq-server start.

This app runs on Python 3.

install the Python package pipenv: $ pip install pipenv

Installing dependencies

You can install all dependencies with:

$ pipenv install