-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconectar.js
More file actions
22 lines (18 loc) · 721 Bytes
/
conectar.js
File metadata and controls
22 lines (18 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { initializeApp } from "firebase/app";
import 'firebase/firestore';
import { getFirestore } from "firebase/firestore";
import { getAuth } from 'firebase/auth'
const conectGemini = "AIzaSyAdeu0VtpMaTO7Q4TTEkig2nwsCaSP5o34";
const firebaseConfig = {
apiKey: "AIzaSyD4oykV_NMd_cVBQObf4d4LSrAV-n4v440",
authDomain: "tickets-1c045.firebaseapp.com",
projectId: "tickets-1c045",
storageBucket: "tickets-1c045.appspot.com",
messagingSenderId: "619756641576",
appId: "1:619756641576:web:740c00ff522d2e7b64c41d",
measurementId: "G-9BFXXNR996",
};
const firebaseApp = initializeApp(firebaseConfig);
const db = getFirestore(firebaseApp);
const auth = getAuth(firebaseApp)
export { conectGemini, db, auth };