Iteration 0

This commit is contained in:
Urban Modig
2025-10-04 21:21:41 +02:00
commit aef0a4c98f
14 changed files with 577 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
.PHONY: run stop logs build image
run:
docker compose up -d
stop:
docker compose down -v
logs:
docker compose logs -f api
build:
./gradlew clean test bootJar
image:
docker build -t registry.local:5000/hemhub/api:dev .