Now we are all set. We have a gateway application, we have a microservice with a SQL DB that runs with H2 in a dev profile and MySQL in a prod profile (invoice application), we have a microservice with MongoDB (notification application), and we just finished setting up our JHipster Registry locally. Now, it is time to start everything locally and see how seamless our microservice setup works. Make sure the registry is still running.
Running a generated application locally
Gateway application pages
Head over to the Terminal and go to the e-commerce-app folder. Navigate to the store folder and start the gateway application in dev mode:
> cd store
> ./gradlew
This will start our gateway application on port 8080. Let&apos...