[Api Node] Firebase auth and user auth store (#3467)

This commit is contained in:
Christian Byrne
2025-04-16 05:15:51 +08:00
committed by GitHub
parent 907632a250
commit cec0dcbccd
6 changed files with 1402 additions and 153 deletions

12
src/config/firebase.ts Normal file
View File

@@ -0,0 +1,12 @@
import { FirebaseOptions } from 'firebase/app'
export const FIREBASE_CONFIG: FirebaseOptions = {
apiKey: 'AIzaSyC2-fomLqgCjb7ELwta1I9cEarPK8ziTGs',
authDomain: 'dreamboothy.firebaseapp.com',
databaseURL: 'https://dreamboothy-default-rtdb.firebaseio.com',
projectId: 'dreamboothy',
storageBucket: 'dreamboothy.appspot.com',
messagingSenderId: '357148958219',
appId: '1:357148958219:web:f5917f72e5f36a2015310e',
measurementId: 'G-3ZBD3MBTG4'
}