Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 1.28 KB

README.md

File metadata and controls

61 lines (39 loc) · 1.28 KB

Binder

CardiAP

Copyright © 2020-2021 Velez Rueda, Garcia Smith, Sommese

Python Server for performing biomedical images analysis

Live server

You can run the web version of CardiAP hosted in AWS. You can launch CardiAP here

Running CardiAP using docker

You can easily run CardiAP using Docker by running in your terminal the following command:

docker run -it --rm --net host ajvelezrueda/cardiap

CardiAP will be listening at http://localhos:5000/

Installing CardiAP locally

# clone the repository
git clone https://github.com/CardiAP/CardiAp.git

# Create and active a virtual env
$ virtualenv .venv

# activate the env
$ . .venv/bin/activate

# install dependencies
$ pip3 install -r requirements.txt 

Run it locally

$ voila CardiAP.ipynb
# start with live reload
$ voila CardiAP.ipynb  --autoreload=True

After using CardiAP locally, you can deactivate the env by doing:

$ deactivate

Building docker image

docker build . -f Dockerfile -t ajvelezrueda/cardiap