-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfirebase.js
27 lines (22 loc) · 856 Bytes
/
firebase.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
import "firebase/compat/analytics";
import firebase from "firebase/compat/app";
import "firebase/compat/auth";
import "firebase/compat/database";
import "firebase/compat/functions";
import config, { isDev } from "./config";
firebase.initializeApp(config.firebase);
if (isDev) {
firebase
.auth()
.useEmulator("http://localhost:9099", { disableWarnings: true });
firebase.database().useEmulator("localhost", 9000);
firebase.functions().useEmulator("localhost", 5001);
} else {
firebase.analytics();
}
export const authProvider = new firebase.auth.GoogleAuthProvider();
const functions = firebase.functions();
export const createGame = functions.httpsCallable("createGame");
export const customerPortal = functions.httpsCallable("customerPortal");
export const finishGame = functions.httpsCallable("finishGame");
export default firebase;