https://github.com/gpietro/spring-boot-axon-demo
PoC Axon Framework for ADT Patient
https://github.com/gpietro/spring-boot-axon-demo
axon-framework cqrs ddd event-sourcing poc
Last synced: 5 months ago
JSON representation
PoC Axon Framework for ADT Patient
- Host: GitHub
- URL: https://github.com/gpietro/spring-boot-axon-demo
- Owner: gpietro
- Created: 2020-12-11T16:22:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-08T10:01:53.000Z (over 5 years ago)
- Last Synced: 2024-04-23T13:57:03.560Z (about 2 years ago)
- Topics: axon-framework, cqrs, ddd, event-sourcing, poc
- Language: Java
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PoC Axon Framework for ADT Patient
This PoC aims to evaluate the usage of Axon Framework for the development of an Admission Dismission Transfer Patient
solution follwing the CQRS pattern.
### Run Axon Server SE with docker
```
docker run -d --rm --name axonserver-se -p 8024:8024 -p 8124:8124 \
-v `pwd`/data:/data \
-v `pwd`/events:/eventdata \
-v `pwd`/config:/config \
axoniq/axonserver
```
### Run application with docker (not working yet)
**Build image**
```docker build -t cqrs-adt-demo .```
**Run the application**
```docker run -p 8080:8080 cqrs-adt-demo```