The RocketChat omnichannel feature provides a multi-channel environment for communication between companies and their customers.
Before you set up LiveChat, you are required to have the following installed on your device.
The Rocket.Chat LiveChat platform is developed with Preact. It is a minimal, lightweight application designed to facilitate B2C (Business-to-customer) communication between Agents and website visitors.
{% hint style="info" %}
This setup is done assuming you have a Rocket.Chat server running. We will use a local instance at http://localhost:3000
for this guide.
{% endhint %}
To set up OmniChannel LiveChat,
- Clone the LiveChat source code from the GitHub repository by running this command:
git clone https://github.com/RocketChat/Rocket.Chat.git
- Navigate to the LiveChat folder in the cloned directory.
cd Rocket.Chat
cd packages/livechat
- Install dependencies by running
yarn
{% hint style="info" %}
You can check the recommended version of node and yarn in the package.json
file in the root directory.
{% endhint %}
- Build preact application to
/build
folder after executing.
yarn dev
- In another terminal, run webpack with hot reload at
http://localhost:8080
by executing this command:
yarn start
- Open up the
widget-demo.html
file in your browser:http://localhost:8080/widget-demo.html
. You should see a page with the LiveChat initiation icon at the bottom right.
{% hint style="info" %}
For better performance, you can run this widget-demo.html
on an HTTP server.
{% endhint %}