generated from ReCoded-Org/capstone-react-redux-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Allan <[email protected]>
- Loading branch information
1 parent
1c30a30
commit 0ebd4c5
Showing
3 changed files
with
663 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Import the functions you need from the SDKs you need | ||
import { initializeApp } from "firebase/app"; | ||
import { getFirestore } from "firebase/firestore"; | ||
|
||
// TODO: Add SDKs for Firebase products that you want to use | ||
// https://firebase.google.com/docs/web/setup#available-libraries | ||
|
||
// Your web app's Firebase configuration | ||
// For Firebase JS SDK v7.20.0 and later, measurementId is optional | ||
const firebaseConfig = { | ||
apiKey: "AIzaSyDJCGj_7ev2PdLoHmbY4y0KnodX6Wr0v38", | ||
authDomain: "recoded-jobie.firebaseapp.com", | ||
projectId: "recoded-jobie", | ||
storageBucket: "recoded-jobie.appspot.com", | ||
messagingSenderId: "347602460457", | ||
appId: "1:347602460457:web:ea8867354e657f8b2be138" | ||
}; | ||
|
||
// Initialize Firebase | ||
const app = initializeApp(firebaseConfig); | ||
|
||
// Initialize Firebase | ||
const db = getFirestore(app); | ||
|
||
export { db }; |
Oops, something went wrong.