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.
- Host: GitHub
- URL: https://github.com/giddyeffects/rtchat
- Owner: giddyeffects
- Created: 2018-01-14T19:41:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-14T19:41:42.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T09:12:18.517Z (9 months ago)
- Topics: firebase, vuejs2, vuex
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```