msoni89 / project01

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project01

Minimal Spring Boot sample app.

Requirements

For building and running the application you need:

Running the application locally

There are several ways to run a Spring Boot application on your local machine. One way is to execute the main method in the *.Application class from your IDE.

Alternatively you can use the Spring Boot Maven plugin like so:

mvn clean
mvn compile package -DskipTests=true
mvn spring-boot:run

Run the application using docker-compose

docker-compose -f docker-compose.yaml build
docker-compose -f docker-compose.yaml up
docker-compose -f docker-compose.yaml down

Run the application backend-service/frontend-service

mvn clean
mvn compile package -DskipTests=true
mvn spring-boot:run

Frontend-service (http://localhost:9090)

yarn
yarn build
yarn start

About


Languages

Language:Java 56.2%Language:TypeScript 26.3%Language:JavaScript 13.4%Language:HTML 2.1%Language:Dockerfile 2.0%