Skip to content

meeteor-13/platform

Repository files navigation

Platform

Platform services powered by Spring Boot

java version build status release license

Technologies

Usage

Local

Build application artifacts:

./mvnw clean install

Build application artifacts (without tests):

./mvnw clean install -Dmaven.test.skip=true

Run tests:

./mvnw test

Run run services:

./mvnw -pl [:service1-server,:service2-server] spring-boot:run

Docker

Require already built application artifacts

Bootstrap full project using docker-compose:

docker-compose up

Bootstrap project excluding some services using docker-compose:

docker-compose up  --scale [SERVICE=0...]

Stop and remove containers, networks, images:

docker-compose down