Skip to content

Commit

Permalink
Update sample app for v4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-cometchat committed Apr 9, 2024
1 parent 11b9f3d commit f6412ba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Vue Sample App by CometChat

This is a reference application showcasing the integration of [**CometChat's Vue UI Kit**](https://www.cometchat.com/docs/v4/vue-uikit/overview) within an Vue framework. It provides developers with examples of implementing real-time messaging and voice and video calling features in their own Vue-based applications.
This is a reference application showcasing the integration of [**CometChat's Vue UI Kit**](https://www.cometchat.com/docs/v4/vue-uikit/overview) within a Vue framework. It provides developers with examples of implementing real-time messaging and voice and video calling features in their own Vue-based applications.

## Prerequisites

Expand All @@ -21,7 +21,7 @@ This is a reference application showcasing the integration of [**CometChat's Vue
## Installation
1. Clone the repository:
```
git clone https://github.com/cometchat-pro/cometchat-sample-app-vue.git
git clone https://github.com/cometchat/cometchat-sample-app-vue.git
```
2. Navigate to the cloned directory:
```
Expand All @@ -32,13 +32,7 @@ This is a reference application showcasing the integration of [**CometChat's Vue
npm install
```
4. Enter your CometChat _`App ID`_, _`Region`_, and _`Auth Key`_ in the [src/AppConstants.ts](https://github.com/cometchat/cometchat-sample-app-vue/blob/v4/src/AppConstants.ts) file:
```typescript
export const AppConstants = {
APP_ID: "APP_ID",
REGION: "REGION",
AUTH_KEY: "AUTH_KEY",
};
```
https://github.com/cometchat/cometchat-sample-app-vue/blob/11b9f3dbb3769f9a8f4e3a387c82f0ba778e9a46/src/AppConstants.ts#L1-L5
5. Run the project locally to see all CometChat features in action:
```
npm run serve
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cometchat-chat-sample-app-vue",
"version": "4.3.2",
"version": "4.3.3",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"scripts": {
Expand All @@ -9,8 +9,8 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@cometchat/chat-uikit-vue": "4.3.2",
"@cometchat/calls-sdk-javascript": "4.0.6",
"@cometchat/chat-uikit-vue": "4.3.3",
"@cometchat/calls-sdk-javascript": "4.0.7",
"core-js": "^3.8.3",
"file-loader": "^6.2.0",
"vue": "^3.2.13"
Expand Down
2 changes: 1 addition & 1 deletion src/metaInfo.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const metaInfo = {
name: "cometchat-chat-sample-app-vue",
version: "4.3.2",
version: "4.3.3",
type: "sample",
platform: "Vue",
};

0 comments on commit f6412ba

Please sign in to comment.