Initial commit

This commit is contained in:
rviewer-team
2022-06-16 10:17:10 +02:00
commit 6bd3921714
32 changed files with 1214 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
.PHONY: down up test
down:
docker-compose down
up:
docker-compose run -d -p "8080:8080" java-skeleton-api gradle clean build bootRun -x test
test:
docker-compose run --rm --no-deps -p "8080:8080" java-skeleton-api gradle test
coverage: test