Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 668 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 668 Bytes

Axon Banking

My attempt at following the Axon Banking live coding tutorial found at youtube.

To make it more of a challenge I used Kotlin with Spring Boot 2.0 and Gradle build. The tutorial uses Java with a little bit of Kotlin, an older Spring Boot and maven rather than Gradle.

Videos found here:

To run:

  • In memory db: start BankingApplication.kt
  • Persistent db:
    • start h2 (with script h2 folder)
    • start BankingApplication.kt with -Dspring.profiles.active=h2

TODO

  • Make more Kotlin idiomatic
  • Add more tests