From 432b3ca6ae3568cf1cc7678341f6cd5353cb418d Mon Sep 17 00:00:00 2001 From: Annie <168873935+AnnieIj@users.noreply.github.com> Date: Tue, 16 Jun 2026 08:15:26 +0000 Subject: [PATCH] docs: update REPOSITORIES.md with correct package names - Rename /streaming-sdk to /xstreamroll-sdk - Rename /stream-processing to /xstreamroll-processing - Update api/ setup to use pnpm (matches pnpm-lock.yaml) Closes #220 --- REPOSITORIES.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/REPOSITORIES.md b/REPOSITORIES.md index 3654307..3f964e3 100644 --- a/REPOSITORIES.md +++ b/REPOSITORIES.md @@ -18,26 +18,26 @@ This project is organized as a monorepo with 4 main services: - **Setup**: ```bash cd api - npm install - npm run start:dev + pnpm install + pnpm run start:dev ``` -## 3. Streaming SDK (`/streaming-sdk`) +## 3. Streaming SDK (`/xstreamroll-sdk`) - **Framework**: TypeScript SDK - **Description**: Client library for publishing events and interacting with streams - **Setup**: ```bash - cd streaming-sdk + cd xstreamroll-sdk npm install npm run build ``` -## 4. Stream Processing (`/stream-processing`) +## 4. Stream Processing (`/xstreamroll-processing`) - **Framework**: Node.js with TypeScript - **Description**: Dedicated service for processing real-time streaming data - **Setup**: ```bash - cd stream-processing + cd xstreamroll-processing npm install npm run start ```