Skip to content

L3xLabs/ChitChat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.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.