Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This can be done in two ways: By starting redis yourself or using docker. We recommend using docker as this makes starting other services easier later on.

In a terminal, start redis using

...

Expand
titleDocker alternative to start redis (for windows)

Start it on your laptop in the root framework framework folder (for MacOS and Windows: make sure Docker Desktop is running).

Code Block
languagebash
cd your/path/to/framework
docker compose up redis

This should start print Container sicframework-redis-1 Created which means Redis is up and running.

...