mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-17 07:58:36 +03:00
Initial working version
This commit is contained in:
20
src/firebase.js
Normal file
20
src/firebase.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import { initializeApp } from "firebase/app";
|
||||
import { getAuth } from "firebase/auth";
|
||||
import { getFirestore } from "firebase/firestore";
|
||||
|
||||
const firebaseConfig = {
|
||||
apiKey: "AIzaSyBEawXAq9pajlVKQtLopWyd_ELDwoUlbDo",
|
||||
authDomain: "bellingcat-auto-archiver-b85db.firebaseapp.com",
|
||||
projectId: "bellingcat-auto-archiver-b85db",
|
||||
storageBucket: "bellingcat-auto-archiver-b85db.appspot.com",
|
||||
messagingSenderId: "406209235111",
|
||||
appId: "1:406209235111:web:f27327bed2db7295a43382",
|
||||
};
|
||||
|
||||
const firebaseApp = initializeApp(firebaseConfig);
|
||||
|
||||
const firebaseAuth = getAuth(firebaseApp);
|
||||
|
||||
const firebaseFirestore = getFirestore(firebaseApp);
|
||||
|
||||
export { firebaseApp, firebaseAuth, firebaseFirestore };
|
||||
Reference in New Issue
Block a user