Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 1.41 KB

README.md

File metadata and controls

52 lines (45 loc) · 1.41 KB

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