Create an account at the link below, and register your test application, to get your Blue Button Sandbox Credentials which will allow you to access the Blue Button synthetic data. These credentials will be necessary to run this sample application as well as utilize the Blue Button data within your own applcation. See the section below 'Running the Back-end & Front-end'.
https://sandbox.bluebutton.cms.gov/v1/accounts/create
To ensure this sample application will work properly, make sure that when you register your application you add the following url (see below) under the 'Callback URLS/Redirect Uris' section:
http://localhost:3001/api/bluebutton/callback/
When you are ready to run your own application, you can change this value to the url that you need.
Just log into your Blue Button Sandbox account and select 'View/Edit App->'.
Install and setup Docker. Go to https://docs.docker.com/get-started/ and follow the directions.
Download and install node. Go to https://nodejs.org/en/download/ and follow the directions.
Once you have Docker and Node installed and setup then do the following:
cp server/sample-bluebutton-config.json server/.bluebutton-config.json
Make sure to replace the clientId and clientSecret variables within the config file with the ones you were provided, for your application, when you created your Blue Button Sandbox account.
docker-compose up -d
This single command will create the docker container with all the necessary packages, configuration, and code to run both the front and back ends of this sample application.
To run the front-end (client component listening on port 3000) in preview mode, set environment variable BB2_APP_LAUNCH=preview when launch docker-compose:
BB2_APP_LAUNCH=preview docker-compose up -d
To see the application in action open your browser and enter the following URL:
To see the process of authenticating with Blue Button via Medicare.gov and retrieve EoB data just click on the 'Authorize' button.
To ensure data displays properly in the sample application please use a Blue Button Sandbox user that has PDE (Part-D Events) EoBs (Explanation of Benefits). An example of a user with this data would be: BBUser29999 (PWD: PW29999!) or BBUser29998 (PWD: PW29998!)
Read the DEVELOPER NOTES found in the code to understand the application and where you will need to make adjustments/changes as well as some suggestions for best practices.
To start the sample in Docker :
- go to the base directory of the repo
- docker-compose up
To stop the sample:
The sample are running the sample in foreground, logging and tracing from both client and server components are on stdout of the command window, to stop the sample, press Ctl C, which will terminate both the client and server components.