Created
December 10, 2021 09:44
-
-
Save hieptl/1772076cdd687e9eb88452142e47c1c4 to your computer and use it in GitHub Desktop.
firebase.js - ZocDoc Clone
This file contains hidden or 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
import { fbConfig } from "./env"; | |
import { initializeApp } from 'firebase/app'; | |
import { getAuth, createUserWithEmailAndPassword, signInWithEmailAndPassword } from "firebase/auth"; | |
import { getStorage, ref as storageRef, uploadBytesResumable, getDownloadURL } from "firebase/storage"; | |
import { getDatabase, ref as databaseRef, set as databaseSet, onValue as databaseOnValue, get as databaseGet, child as databaseChild, off as databaseOff, query as databaseQuery, orderByChild, equalTo } from "firebase/database"; | |
// TODO: Replace the following with your app's Firebase project configuration | |
const firebaseConfig = { | |
apiKey: `${fbConfig.apiKey}`, | |
authDomain: `${fbConfig.authDomain}`, | |
projectId: `${fbConfig.projectId}`, | |
storageBucket: `${fbConfig.storageBucket}`, | |
messagingSenderId: `${fbConfig.messagingSenderId}`, | |
appId: `${fbConfig.appId}`, | |
}; | |
const app = initializeApp(firebaseConfig); | |
const auth = getAuth(app); | |
const storage = getStorage(app); | |
const database = getDatabase(app); | |
export { | |
storage, | |
storageRef, | |
uploadBytesResumable, | |
getDownloadURL, | |
auth, | |
createUserWithEmailAndPassword, | |
signInWithEmailAndPassword, | |
database, | |
databaseRef, | |
databaseSet, | |
databaseOnValue, | |
databaseGet, | |
databaseChild, | |
databaseOff, | |
databaseQuery, | |
orderByChild, | |
equalTo | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment