1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 11:28:25 +02:00
upscayl/renderer/firebase.ts
2023-08-30 13:28:15 +05:30

33 lines
942 B
TypeScript

// Import the functions you need from the SDKs you need
import { initializeApp } from "firebase/app";
import {
getFirestore,
type DocumentData,
CollectionReference,
collection,
} from "firebase/firestore";
// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: "AIzaSyBwD3AM0XKRsHnA0YU-CKTSSD4xcfDu9wU",
authDomain: "upscayl.firebaseapp.com",
projectId: "upscayl",
storageBucket: "upscayl.appspot.com",
messagingSenderId: "1096660154086",
appId: "1:1096660154086:web:ec1872e9ceb11dad686d27",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
export const db = getFirestore(app);
console.log("🚀 => file: firebase.ts:23 => db:", db);
const createCollection = <T = DocumentData>(collectionName: string) => {
return collection(db, collectionName) as CollectionReference<T>;
};
export const waitlistCollection = createCollection<{
name: string;
email: string;
}>("waitlist");