EHMRS is a project to help health care centers manage their clinial, administrative and financial operations.
You need to have the following installed on your local development system before you can go ahead with this project (except you want to develop using docker).
# client
cd client
npm install
# server
cd server
npm installFor developmental purpose, run the following commands
# client
npm run serve
# server
npm run migrations
# start dev server
npm run devTo run integration test, run below command
npm run testTo run integration test, run below command
# client
npm run build
# server
npm run build
npm run startFor docker, run the following commands
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -ddocker-compose -f docker-compose.yml -f docker-compose.integration.yml up --abort-on-container-exitdocker-compose -f docker-compose.yml -f docker-compose.prod.yml up --abort-on-container-exit