Skip to content

agilepartner/cqrs-es-workshop-infra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Infrastructure for Agile Partner's DDD/CQRS/ES² workshop

Tools & components

Throughout the workshop, we will be using:

  • EventStore for event persistence and event subscriptions
  • Redis as a read model

Docker

Install docker and docker-compose and the run the following command to start the environment.

docker-compose up

Check everything is running

EventStore

Open EvenStore Admin Console. You should see a login screen. You can log in the console by using the defaults username and password.

  • username: admin
  • password: changeit

Redis

First you need to install Redis CLI. The easiest way for that is to use npm.

npm install -g redis-cli

Look here for more information.

rdcli -h localhost -p 6379

You should get a prompt

localhost:6379>

You can test that you can set and get from Redis

localhost:6379> set Foo Bar
OK
localhost:6379> get Foo
Bar
localhost:6379>

To exit the prompt, just type exit.

About

Infrastructure for Agile Partner's DDD/CQRS/ES² workshop

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published