HIPAA and FDA ready version of the Todos demo example.
============================
1.0.3.1
============================
# Should be as simple as cloning the repository...
git clone https://github.com/awatson1978/clinical-checklists
# And then running it...
cd clinical-checklists/webapp
meteor
============================
============================
ChecklistManifesto uses many packages shared between ClinicalFramework apps. Use the starrynight fetch
command to fetch the shared packages for local development.
# Install the starrynight utility...
npm install -g starrynight
# And then running it...
cd packages
starrynight fetch
============================
All tasks are implemented with the HL7 FHIR DiagnosticOrder resource type. Please see the HL7 FHIR DTSU2 for reference type schema definition.
============================
This app supports logging events to a HIPAA Audit Log. See the HIPAA Audit Utility for details on viewing the Hipaa Audit Log.
============================
# optional: you may want to reset your application data
terminal-a$ meteor reset
# run your application as usual
terminal-a$ meteor
# then open up a second terminal and run the validation tests
terminal-b$ starrynight autoconfig
terminal-b$ starrynight run-tests --type validation
# if you want to run verification tests, you'll need to fetch the packages in the app
terminal-a$ starrynight fetch
# then open up a second terminal and run_nightwatch to run all tests
terminal-b$ starrynight run-tests --type verification
============================