From d713edcc28177cbaac75c36764f8017af003dfb3 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 11 Mar 2025 16:17:54 +0100 Subject: [PATCH] Update README to clarify commands for building typings in frontend and backend --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4b7700b..a903154 100644 --- a/README.md +++ b/README.md @@ -54,11 +54,16 @@ cd openvidu-meet > **The script prepare and build all necessary dependencies and typings for running the frontend and backend.** > > -> - For building the **typings**, you can run the following command: +> - For building the **typings**, you can run the following command in the frontend and backend directories: > > ```bash -> cd openvidu-meet/types -> npm run sync-ce +> cd frontend +> npm run types:sync +> ``` +> +> ```bash +> cd backend +> npm run types:sync > ``` **3. Start the Backend**