An open API service indexing awesome lists of open source software.

https://github.com/hackafro/ionic-chat-app

Suggest emojis as replies using sentiment analysis in Ionic chat application
https://github.com/hackafro/ionic-chat-app

Last synced: 10 months ago
JSON representation

Suggest emojis as replies using sentiment analysis in Ionic chat application

Awesome Lists containing this project

README

          

# Ionic Chat Application

Emoji suggestions using sentiment analysis

You can find the article [here](https://pusher.com/tutorials/chat-app-ionic-sentiment)

## Prerequisites

- [Ionic](https://ionicframework.com/getting-started)
- [Express](https://expressjs.com/)
- [Pusher](https://pusher.com)
- A [Pusher account](https://pusher.com/signup) and [Pusher app credentials](http://dashboard.pusher.com/)

## Getting started

- Clone the project and install dependencies:
- Create a file named `.env`. Update the `.env` file with the content below:

```
PUSHER_APP_ID=app-id
PUSHER_APP_KEY=app-key
PUSHER_APP_SECRET=app-secret
PUSHER_CLUSTER=cluster
```

> **Note**: ensure to replace the placeholder values with your pusher `appId`, `key`, `cluster` and `secret`.

- Clone the repo
- Enter the project folder
- Run `yarn` or `npm i`
- Start server by running `node server`
- Run `ionic serve` to start the application

## Built With

- [Ionic](https://ionicframework.com/getting-started)
- [Pusher](https://pusher.com)
- [Express](https://expressjs.com/)