Update README to clarify commands for building typings in frontend and backend

This commit is contained in:
Carlos Santos 2025-03-11 16:17:54 +01:00
parent f2a7e80d76
commit d713edcc28

View File

@ -54,11 +54,16 @@ cd openvidu-meet
> **The script prepare and build all necessary dependencies and typings for running the frontend and backend.** > **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 > ```bash
> cd openvidu-meet/types > cd frontend
> npm run sync-ce > npm run types:sync
> ```
>
> ```bash
> cd backend
> npm run types:sync
> ``` > ```
**3. Start the Backend** **3. Start the Backend**