From d6b87fc8300995610143a190a2b6e5ca553f8051 Mon Sep 17 00:00:00 2001 From: vsoch Date: Mon, 5 Jun 2017 10:49:01 -0700 Subject: [PATCH] updating application name (images-->main) --- README.md | 9 ++++++++- sendit/apps/{images => main}/models.py | 0 2 files changed, 8 insertions(+), 1 deletion(-) rename sendit/apps/{images => main}/models.py (100%) diff --git a/README.md b/README.md index 2db330e..96a9fe9 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,14 @@ This application lives in a docker-compose application running on `STRIDE-HL71`. ### 1. Data Input -This initial setup is stupid in that it's going to be checking an input folder at some frequency to find new images. `STRIDE-HL71` will receive DICOM from somewhere. It should use an atomic download strategy, but with folders, into the application data input folder. This will mean that when it starts, the folder might look like: +This initial setup is stupid in that it's going to be checking an input folder to find new images. We do this using the [watcher](sendit/apps/watcher) application, which is started and stopped with a manage.py command: + +``` +python manage.py start_watcher +python manage.py stop_watcher +``` + +And the default is to watch for files added to [data](data), which is mapped to '/data' in the container. This means that `STRIDE-HL71` will receive DICOM from somewhere. It should use an atomic download strategy, but with folders, into the application data input folder. This will mean that when it starts, the folder might look like: ```bash diff --git a/sendit/apps/images/models.py b/sendit/apps/main/models.py similarity index 100% rename from sendit/apps/images/models.py rename to sendit/apps/main/models.py