EHRServer is the first open source Clinical Data Management and Sharing Platform, compliant with the openEHR standard . Use it as a:
Primary clinical data repository for web and mobile clinical apps.
Secondary repository for backup or analysis.
Centralized repository to share clinical information between many systems.
Fast prototyping of new health related apps, removing the need of creating the clinical repo yourself.
Main or proxy repository for wearable and other monitoring-based clinical data.
Standardized aggregation repository as a data source for ETL to datawarehouses and analytics tools.
Research and training clinical data repository.
Backend for Clinical Decision Support tools (e.g. rule engines)
EHRServer was designer for developers by developers. You don't need to be an openEHR guru to use it. Easy to install, use, manage and integrate.
Screenshots
Dashboard
Quick look at what is happening in the EHRServer.
Template Manager
Manage clinical document definitions from the Template Manager, defining what data could be stored and queried.
Query Builder
Very simple point and click query creation in seconds, no programming needed.
Manage it on the go
Mobile friendly user interface, adapts to small screens.
EHRServer Architecture (simplified)
Quick architecture reference
REST API provides services to integrate the EHRServer to your systems and apps (documentation ).
Web Console provides a user interfaces for administrators of the EHRServer (check the screenshots above).
Query Builder is the component in charge of creating, managing and executing queries over openEHR data stored in the EHRServer.
SNOMED Query is a component in charge of processing the terminologic constraints in queries that contain SNOMED CT Expressions. This component is part of the SNQUERY tool developed by VeraTech
EHR Base is where data is managed, indexed, versioned and stored.
Main features
openEHR compliant clinical data repository
Administrative Web Console
Simple but powerful REST API
Supports XML and JSON
Full audit access for traceability
Versioned clinical documents
Query Builder from the Web Console to create data queries (no programming needed!)
Support of SNOMED CT Expressions on openEHR queries (simplifies complex queries)
Supports any structure of clinical document (following the openEHR standard information model)
Vendor Neutral Archive
Multitenancy
Based on Open Source Technologies
Support the project!
One way of supporting this project and our vision for building a completely open
e-health platform, is through community donations.
This is used for servers, dev tools, pay for dev time, maintain the website,
updated documentation and guides.
Another way of supporting the project is by subscribing to the CloudEHRServer
Thanks for your support!
Try it
Want to try EHRServer?
Quick install, configure, run locally (step by step)
This guide is based on a Linux environment, should be adapted for other OS.
Dependencies
curl -s get.sdkman.io | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install grails 2.5.6
set version by default: Y
grails -version
Note: Grails should be 2.5.6!
Database
install MySQL
copy the default root password
cd /usr/local/mysql/bin
./mysql -u root -p
enter default root password
ALTER USER 'root'@'localhost' IDENTIFIED BY 'NEW-ROOT-PASSWORD';
CREATE DATABASE ehrserver;
exit
EHRServer configuration
cd ehrserver/grails-app/conf
nano DataSource.groovy
change development password to NEW-ROOT-PASSWORD
save
EHRServer environment variables
Mandatory:
export EHRSERVER_REST_SECRET="6067dba9-1417-41c5-b1af-92208c77ce77"
export EHRSERVER_SNQUERY_KEY="22222222-2222-2222-2222-222222222222"
Copy
Optional:
export EHRSERVER_EMAIL_FROM="[email protected] "
export EHRSERVER_EMAIL_HOST="mail.yourdomain.com"
export EHRSERVER_EMAIL_PORT=1234
export EHRSERVER_EMAIL_USER="[email protected] "
export EHRSERVER_EMAIL_PASS="youruserpassword"
export EHRSERVER_ALLOW_WEB_USER_REGISTER=true
Copy
EHRServer run (dev environment)
cd ehrserver
grails run-app
open http://localhost:8090/ehr
login with admin/admin/123456