Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 854 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 854 Bytes

Kotlin Spring Boot Starter App

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:

  1. Spring Web - Serving REST requests
  2. PostgreSQL Driver - DB Driver
  3. Flyway Migration - DB migration management
  4. Testcontainers - Testing
  5. Spring Boot DevTools - QoL improvements