JRM Java Stock System Project

Run application (development approach):

docker

1. Clone project repository.

2. Make sure you have docker installed.

2a. On Windows OS make sure that docker engine has started.

3. From the root directory of the project with root privileges run:

a.

$ docker compose up -d postgres

b.

$ ./gradlew build #linux/macOS
$ gradlew.bat build #windows 

c.

$ docker compose up --build -d

4. After that you can open http://localhost:3000 in your browser.

4a. Accessing SwaggerUI by following http://localhost:8080/swagger-ui/index.html

Stop application:

To stop application and remove the containers run:

$ docker compose down