Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.22 KB

README.md

File metadata and controls

59 lines (42 loc) · 1.22 KB

ChitChat Client Setup

This guide will help you set up and run the ChitChat web client.

Prerequisites

Make sure you have the following installed:

Steps to Set Up the Client

  1. Clone the repository:

    git clone https://github.com/L3xLabs/chitchat-web-client.git
    git clone https://github.com/L3xLabs/chitchat-react-sdk.git
  2. Set up the matrix-js-sdk:

    pushd matrix-js-sdk
    yarn link
    yarn install
    popd
  3. Set up the matrix-react-sdk:

    pushd matrix-react-sdk
    yarn link
    yarn link matrix-js-sdk
    yarn install
    popd
  4. Set up the ChitChat web client:

    cd chitchat-web-client
    yarn link matrix-js-sdk
    yarn link matrix-react-sdk
    yarn install
  5. Start the application:

    yarn start

The application should now be running locally. You can access it via your browser.

Troubleshooting

If you encounter any issues, please refer to the official documentation or create an issue in the GitHub repository.