Skip to content

instedd/cdx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CDX

Reference implementation for the Connected Diagnostics API (http://dxapi.org/)

CDX Core Server. Getting Started

Development environment (with Docker)

  1. Clone the repo.

  2. Install Docker.

  3. Install gems:

    $ docker-compose build
    $ docker-compose run --rm web bundle install
    
  4. Setup development db, test db and elasticsearch index template:

    $ docker-compose run --rm web rake db:setup db:test:prepare elasticsearch:setup
    

Additionally setup for importing Loinc Codes

  1. Import Loinc Codes
    $ docker-compose run --rm web rails r script/loinc_codes/import_csv.rb
    

Creating your first user in localhost

  1. Go to http://localhost:3000
  2. Create your account
  3. You won't receive the email. Instead, you can confirm your account by following the steps below
  4. With the container up, run this command docker-compose exec web bash
  5. Then run this command rails c
  6. Then run this command User.last.confirm!

This will confirm the last user that was created in your local environment. Then you should be able to Login normally.

Additionally setup for working with devices

  1. With the container up, run this command docker-compose exec web bash.

  2. Then run this command export PASSWORD=XXXX (defining a password at least 8 characters long)

  3. Import manifests: bundle exec rake manifests:load

To create an initial set of tests:

  1. Navigate to the application

  2. Create a new account and sign in

  3. Create a new institution

  4. Create a new site

  5. Create a new device, choosing Genoscan model

  6. Navigate to /api/playground

  7. Select your newly created device

  8. Copy the contents of /spec/fixtures/csvs/genoscan_sample.csv into the Data field

  9. Run create message and navigate to Tests to verify the tests were successfully imported

Running the environment

$ docker-compose up

Useful commands

# Open a terminal in the web server directory
$ docker-compose exec web bash

# Reload web server container
$ docker-compose restart web

Locations setup

Locations are obtained from the InSTEDD Location Service. You can specify a different path in config/settings/development.yml.local

Poirot

CDX uses Poirot for additional logging. You need to install zeromq library version 3.2.0 for it to work, or disable it in config/poirot.yml. On Mac OS, run brew install homebrew/versions/zeromq32; if you have other versions of zeromq installed, it may be required to run brew link zeromq32 --force as well.

NNDD

To run notifiable diseases on development, checkout the project and symlink the custom settings files in /etc/nndd on this project:

$ cd $NOTIFIABLE_DISEASES/conf
$ ln -s $CDP/etc/nndd/overrides.js overrides.js
$ ln -s $CDP/etc/nndd/overrides.css overrides.css

Sync Server

In order to allow synchronization of clients through rsyns - for csv files -, you should use cdx-sync-sshd, which is a dockerized sshd container, with an inbox and outbox directoy for each client. Download and build it before continuing.

You have to mount sshd volumes pointing to the folders where you will store your authorized keys, server keys and sync directory. Although sshd-server runs standalone and independently of the cdx server, the cdx server needs to be aware of such directories:

  • SYNC_HOME: here is where files from clients wil be sync'ed. The file watcher will monitor inbox files here
  • SYNC_SSH: here is where authorized_keys file will be stored. The cdx app will write such file on this directory whenever a new ssh keys is added to a device.

By default, the cdx app assumes such directories will point to the tmp directory of the cdp app. Thus, you should start the cdx-sync-sshd docker container this way:

  cd <where you have cloned cdx-sync-server>
  export CDP_PATH=<where you have cloned this cdp repository>
  make testrun SYNC_HOME=$CDP_PATH/tmp/sync \
               SYNC_SSH=$CDP_PATH/tmp/.ssh

Sync File Watcher

Now you must start the sync filewatcher. It is based on cdx-sync-server, but already bundled into cdx app. Run the following:

 cd $CDX_PATH
 rake csv:watch

Now, whenever a new csv file enters the sshd inbox, it will be imported into the cdx platform.

Sync File Watcher - Client Side

In the client side, you will need to run another filewatcher: cdx-sync-client. It is a Windos App. Install it using its NSI installer, restart your computer, and fill the form that will prompt after first restart. You will be required to provide an activation token - you can generate it form the device manager in the CDP app.

Legacy setup (local installation, without Docker)

  1. Clone the repo.

  2. Install dependencies:

    • bundle install.
    • ImageMagick for Paperclip
      • Install it in mac with: brew install imagemagick
    • Redis is used by sidekiq. CDX uses sidekiq as ActiveJob backend
      • Install it in mac with: brew install redis
      • you can start it with redis-server --daemonize yes
    • Elasticsearch is used as the main index for test results.
      • We support elasticsearch versions < 2.x
      • Install it in mac with: brew install elasticsearch17
  3. Setup development database: bundle exec rake db:setup

  4. Setup test database: bundle exec rake db:test:prepare

  5. Setup elasticsearch index template: bundle exec rake elasticsearch:setup

  6. Run tests: bundle exec rake (this will run rspec and cucumber)

  7. Start development server: bundle exec rails s

About

Connected Diagnostics Platform

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 30