Add some scaffolding.

This commit is contained in:
2026-05-29 12:57:56 -06:00
parent 804fae4a90
commit 6ca1117565
8 changed files with 264 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: run test docker-build docker-up docker-down
run:
JWT_SECRET=dev-secret-change-me mvn spring-boot:run
test:
mvn test
docker-build:
docker build -t notesvault:latest .
docker-up:
docker compose up -d
docker-down:
docker compose down