Code developed at NHSHackDay2 to count cells for haematological blood film analysis. Cellcounter is deployed at cellcountr.com.
Clone the repository:
git clone ...
Create a virtual environment:
virtualenv .env
source .env/bin/activate
pip install -r requirements.txt
(if you don't have virtualenv
, then sudo pip install virtualenv
)
(if you don't have pip
, then sudo easy_install pip
)
Build the database:
python manage.py syncdb
Apply database migrations:
python manage.py migrate
Run the Django webserver, setting the DEBUG environment variable:
export DEBUG=True
python manage.py runserver