Skip to content

Trying out the Firebase firestore with a simple chat app.

Notifications You must be signed in to change notification settings

lmiller1990/firestore-vue-chat

Repository files navigation

Firechat

A sample app with Vue.js, Vuex and Google Firestore.

Install

Install NPM :

npm i -D

Create an account Google Firestore.
And obtain code (click “Add Firebase to your web app”) : example

You obtain that

// Initialize Firebase
  var config = {
    apiKey: "...",
    authDomain: "PROJECT.firebaseapp.com",
    databaseURL: "https://PROJECT.firebaseio.com",
    projectId: "PROJECT",
    storageBucket: "",
    messagingSenderId: "..."
  };
  firebase.initializeApp(config);

Create config.js in ./src/config.js and format same as :

const config = {
    apiKey: "...",
    authDomain: "PROJECT.firebaseapp.com",
    databaseURL: "https://PROJECT.firebaseio.com",
    projectId: "PROJECT",
    storageBucket: "",
    messagingSenderId: "..."
};
export default config

Retur on Firestore and go to Left Menu->DEVELOP->Database.
Click “Cloud Firestore”, then select “test mode” (it means your database will be public, so don’t share the link on the internet anywhere). example

Launch server

npm run dev

Doc

About

Trying out the Firebase firestore with a simple chat app.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published