You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* order_update: add event-store-db to docker-compose start instruction
* order_update: enable monitoring on nats server
* order_update: add node-nats-streaming library in order service for communication on nats network
* order_update: add name option in nats connection option so such each services can be accurately identified in the http monitoring
* order_update: use prefix to determine pre approved payment in payment service instead of exact keyword in the order description
* order_update: merge mocked random payment provider with configurable payment provider and set non production environment to always use the mocked payment provider
* order_update: propagate aggregate_id in event_data so that the subsequent processes have the correct order id for further processing
* order_update: add nats-streaming client in order service
* order_update: implement update order status by id in order service
* order_update: add nats-worker
* order_update: wrap application with nats-streaming connection and activate nats-worker
* order_update: rename aggregate_id to event_id in event_data published onto nats-network instead
* order_update: process confirmed order
* order_update: fix incorrect event data json stringification in nats worker in payment service
* order_update: fix predeclined payment prefixes is not correctly checked against
* order_update: process declined payments
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,6 @@ Event Sourcing Order-Payment with NATS
9
9
**IMPORTANT**: Due to the docker nats-streaming image not having a shell, it is not possible to wait for the db connection before start itself. Hence the docker services have to be started exactly in the following order:
10
10
11
11
```shell
12
-
docker-compose up -d order-db nats-streaming-db
12
+
docker-compose up -d order-db event-store-db nats-streaming-db
0 commit comments