Copyright © 2020-2021
Velez Rueda, Garcia Smith, Sommese
Python Server for performing biomedical images analysis
You can run the web version of CardiAP hosted in AWS. You can launch CardiAP here
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/
# 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
$ voila CardiAP.ipynb
# start with live reload
$ voila CardiAP.ipynb --autoreload=True
After using CardiAP locally, you can deactivate the env by doing:
$ deactivate
docker build . -f Dockerfile -t ajvelezrueda/cardiap