Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 716 Bytes

README.md

File metadata and controls

52 lines (42 loc) · 716 Bytes

CardioQuest

Test Status:

Build Status

Setup

To install/update all Python dependencies:

sudo pip install -U -r requirements.txt

To create/update the database schema:

cd src
alembic upgrade head

Run the project

To run the project production (background):

cd src
cherryd -d -i init

Then to kill it:

pkill cherryd

To run the project development (foreground):

cd src
./init.py

Then to kill it:

press ctrl c

Tests

To run the project's unittests:

cd test
./test.py