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

https://github.com/giddyeffects/rtchat

Real-time chat app using VueJS Vuex and Firebase.
https://github.com/giddyeffects/rtchat

firebase vuejs2 vuex

Last synced: 9 months ago
JSON representation

Real-time chat app using VueJS Vuex and Firebase.

Awesome Lists containing this project

README

          

# fireChat

> Real-time chat app using VueJS Vuex and Firebase. This's a simple implementation with more modifications coming soon :)

## Installation

1. Clone the repository to ``

```bash
git clone https://github.com/giddyeffects/rtchat.git `
```

2. Change directory to `` and create a **config.js** file in the **src** folder with the contents
```javascript
// Firebase config
const config = {
apiKey: "",
authDomain: ".firebaseapp.com",
databaseURL: "https://.firebaseio.com",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};

export default config
```
3. Install dependencies and serve/build project

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build
```