Running the Pet Store App
The Pet Store app is a Spring Boot application that can be started up by running the App class.
This starts the application on port 5000.
It can also be started in a docker container using the following instructions:
-
Install docker on your machine.
-
Clone the Petstore project on your machine.
git clone https://github.com/apache/juneau-petstore.git
- Open terminal inside the project directory and run the below command to start the app.
docker build . -t petstore && docker run -p 5000:5000 petstore