Skip to content

Setup

Get your environment running in 6 steps.

Workshop Repository


1. Clone and install

git clone https://github.com/Redislabs-Solution-Architects/redis-iris-workshop.git
cd redis-iris-workshop
make install
git clone https://github.com/Redislabs-Solution-Architects/redis-iris-workshop.git
cd redis-iris-workshop
.\workshop.ps1 install

2. Create a Redis Cloud database

  1. Go to cloud.redis.io and sign up or log in.
  2. Click New database and select Try 30 MB for Free.

    Free tier

  3. Name it (e.g. iris-workshop) and click Create.

  4. Click Connect, choose Python, and copy your host, port, and password.

    Connect

3. Configure environment

cp .env.example .env
Copy-Item .env.example .env

Fill in your credentials:

DEMO_DOMAIN=healthcare
OPENAI_API_KEY=<from your instructor — check Announcements>
REDIS_HOST=<your host>
REDIS_PORT=<your port>
REDIS_PASSWORD=<your password>

Make sure DEMO_DOMAIN is set to healthcare this determines which industry vertical the app uses.

4. Seed data

make seed-data
.\workshop.ps1 seed-data

This loads policy documents with vector embeddings into your Redis database.

5. Start the app

make dev
.\workshop.ps1 dev

6. Verify

Open localhost:3040.

  • You see the RedHealthConnect landing page
  • Simple RAG is the only mode available
  • Typing a question returns nothing (expected — Vector Search is next)