Educational Electronic Health Record system: a BCcampus project
EdEHR is an open source web application developed to teach medical students how to use an EHR before they enter the workforce. It can be accessed only through a learning management system (LMS) and requires a technical person to set it up. Once set up, users can access the system either as an instructor or a student. Credentials to try out either role are included below.
The master-bccampus branch is released under a copyright licence (MIT). This includes all work funded by BC Campus from project start, September 2018 to project end, January 31, 2020.
Work since the BC Campus project is released under a copyleft license (GNU Affero General Public License).
BC Campus announcement By E Beattie, February 7, 2019
BC Campus Blog - An Education in Electronic Health Record By J Caldwell, January 7, 2020
Public docs are available here https://edehr.github.io/edehr
A demonstration mode is currently being implemented. This demo mode mimics a learning management system allowing you to experience both the student's and the instructor's experiences. For more information write an email to [email protected].
Assumes you have already installed docker, git, npm and nodejs. Git clone the repository.
cd /your/development/area
git clone https://github.com/edehr/edehr.git
After cloning the repository or to update packages used by the server or client run this one-step install script:
npm run install
This method starts the components one at a time. This is best for intensive development where you need to have a close contact with the code and the components.
Start the database server (in docker container)
npm run start:db
Start the API server. From project root:
npm run start:server
In another terminal session start the client. From project root:
npm run start:client
When done stop the database server. From project root:
npm run stop:db
This method starts all the components with one script, each in their own docker container.
cd deployment
to build the containers and start attached to see debug logs
npm run dev:build
to run containers that were built in detached mode
npm run dev:run
to stop detached running containers
npm run dev:stop
To run a "production" instance you check out the code as above and have the prerequisite tools installed. You have run the 'npm run install' set up script.
Step 1. Build the client vue project.
# in project root
npm run build
Step 2. Start the components, each in their own docker container.
cd deployment
# to build the containers and start attached to see debug logs
npm run prod:build
# to run containers that were built in detached mode
npm run prod:run
# to stop detached running containers
npm run prod:stop
Run lint on both the client and server code base. From project root:
npm run lint
Run tests on both the client and server code base. From project root:
npm run test
There are over 40 EHR screens that are generated using a Google spreadsheet. For more information about this spreadsheet write an email to [email protected]. This spreadsheet defines each screen's form layout, table layout, modal forms and can include option default data to include in the case study "seed".
If you wish to make edits to the screens or the default data, copy a version of the spreadsheet
to your own Google Drive account (downloading and opening in Excel is not supported) and make the edits there.
Copy the data from the furthest right-hand columns into the raw data file in the makeEhrV2/raw_data
directory.
Run the following command:
cd makeEhrV2
./deploy.sh --lint
Pro-tip: The --lint
option can be replaced with -l
.
You must use this lint option before submitting files. If you are
making changes to view locally in multiple steps, you can shorten the time it takes to run the command by leaving lint
out of the command.
Please remember to run the script with lint when you are done and ready to submit your code.
The MongoDB database is running in a Docker container and you need to be inside this container to run the database backup tools. We have a npm script to make this step easy.
npm run shell:mongo
Restore and backup scripts are located in the /data directory. Data files are
placed in a docker volume so after you create a backup you can exit the docker container and
find the backup on your machine in database/backup/dump
).
Inside the Mongo Shell, run:
cd data/
To run the backup script is in ./backup.sh
and
all the dump data will be placed in data/dump/
(database/backup/dump
outside of the container)
A restore script, ./restore.sh
restores based on the contents in the dump/
.
Note
: It might be needed to change the permissions of the script files to be able to execute them.
chmod +x *.sh
EdEHR is an open source project, and we encourage contributions. Please read CONTRIBUTING.md before contributing.
For more details about this project, view the documentation
Alternatively, you can run a local documentation server by running the following command in your terminal:
npm run docs:dev
Then visit http://localhost:8080/edehr See documentation in the docs
directory.
# Stop the server
cd deployment
npm run prod:stop
# Run certbot to update the certs
sudo certbot
#Then find and stop all running nginx
# e.g.
# sudo kill -QUIT 30708
ps aux | grep nginx
# Then restart
npm run prod:run