Throughout the workshop, we will be using:
- EventStore for event persistence and event subscriptions
- Redis as a read model
Install docker and docker-compose and the run the following command to start the environment.
docker-compose up
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
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
.