mnswpr/services/db.service.js
2019-12-08 16:36:29 +08:00

17 lines
No EOL
654 B
JavaScript

export class DatabaseService {
constructor() {
// Your web app's Firebase configuration
const config = {
apiKey: "AIzaSyAbDzNHCSFh59e3r5sZA4_2ZHJnJ6SCCxM",
authDomain: "moment-188701.firebaseapp.com",
databaseURL: "https://moment-188701.firebaseio.com",
projectId: "secure-moment-188701",
storageBucket: "secure-moment-188701.appspot.com",
messagingSenderId: "113827947104",
appId: "1:113827947104:web:b176f746d8358302c51905"
};
// Initialize Firebase
firebase.initializeApp(config);
this.store = firebase.firestore();
}
}