-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.js
46 lines (44 loc) · 1.29 KB
/
auth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { initializeApp } from "firebase/app";
import { getStorage, ref as sRef, getDownloadURL } from "firebase/storage";
import {
signInWithEmailAndPassword,
signOut,
onAuthStateChanged,
initializeAuth,
getReactNativePersistence,
} from "firebase/auth";
import { getDatabase, ref as dRef, child, get } from "firebase/database";
import AsyncStorage from "@react-native-async-storage/async-storage";
//
const firebaseConfig = {
apiKey: "AIzaSyAvVvFLrZDQLIqN0m314ANryJu-zUOOY0Y",
authDomain: "notifire-6339a.firebaseapp.com",
projectId: "notifire-6339a",
databaseURL: "https://notifire-6339a-default-rtdb.firebaseio.com/",
storageBucket: "notifire-6339a.appspot.com",
messagingSenderId: "908506103583",
appId: "1:908506103583:web:6df3490c0b4fd2a5297a2a",
measurementId: "G-GRPXDXB61V",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
//const auth = getAuth(app);
const auth = initializeAuth(app, {
persistence: getReactNativePersistence(AsyncStorage),
});
const storageRef = sRef(getStorage(), "timetables");
const database = getDatabase(app);
const dbRef = dRef(database);
//
export {
auth,
storageRef,
sRef,
get,
child,
dbRef,
getDownloadURL,
signInWithEmailAndPassword,
signOut,
onAuthStateChanged,
};