Skip to content
Snippets Groups Projects
Select Git revision
  • 5bfabe5182e2886cc00b0b4336e3dcba0d42798a
  • master default protected
  • Aufgabe_03
  • aufgabe2
4 results

firebase-config.js

Blame
  • Christopher Luzzi's avatar
    Christopher Luzzi authored
    5bfabe51
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    firebase-config.js 500 B
    import { getFirestore } from '@firebase/firestore';
    import { initializeApp } from "firebase/app";
    
    
    const firebaseConfig = {
      apiKey: "AIzaSyBsN0wEZIv-VsDaLwleYdgSsw398Wzu5x4",
      authDomain: "mobilecomputing-135af.firebaseapp.com",
      projectId: "mobilecomputing-135af",
      storageBucket: "mobilecomputing-135af.appspot.com",
      messagingSenderId: "278853955846",
      appId: "1:278853955846:web:5da41fd1fab66df287ee87"
    };
    
    
    const app = initializeApp(firebaseConfig);
    
    export const db = getFirestore(app);