I'm new to HAPI FHIR, I created a google cloud compute engine VM, installed java and maven, cloned the hapi-fhir-jpaserver-starter and installed it with : mvn install Then runned it to test in my server with : mvn jetty:run
Now I access it using : http://IP:8080/hapi-fhir-jpaserver and I get this page :
Now all the resources are empty (patients etc..) , I need to know :
- Is this a good server for production ?
- What Database the server is actually using and how to access it ?
- What type of Database I must set up and how ?
Thanks
EDIT : I tried to install the hapi server using docker compose, I built the app with mvn clean install and ran the command docker-compose up -d --build but when the installation was finished I get the basic HAPI SERVER (the fresh one) not the version I edited and built.
Any ideas why ?