Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 564 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 564 Bytes

cqrs-meets-hexagonal

This example project is intended as a proof of concept that CQRS/ES can be implemented in a lightweight way without using a dedicated CQRS framework. We will just be using Spring-Boot and some other libraries.

Run Flyway Migrations locally

Because of mixed Java and SQL migration, we need first to clean and compile Java classes to make it work.

$ cd demo-transactions
$ mvn clean compile flyway:migrate -Dflyway.configFiles=../flyway/local.conf
$ mvn clean compile flyway:repair -Dflyway.configFiles=../flyway/local.conf