Inspired by this repository for it's Java equivalent, my attempt to document my way through the Spring Boot Tutorial.
I ended up not getting very far, and this turned into my own boilerplate Spring PoC with some common plugins.
It comes with a couple extra goodies because of my use case. Also requires an instance of Postgres:
$ docker run -p 5432:5432 --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
(or however else you want to provision a DB. Doesn't matter)
Additional Plugins:
- Spring Web - Serving REST requests
- PostgreSQL Driver - DB Driver
- Flyway Migration - DB migration management
- Testcontainers - Testing
- Spring Boot DevTools - QoL improvements