2021-12-09 22:05:55 +00:00
|
|
|
import { getFirestore } from '@firebase/firestore'
|
2022-01-21 23:21:46 +00:00
|
|
|
import { initializeApp, getApps, getApp } from 'firebase/app'
|
2021-12-24 21:06:01 +00:00
|
|
|
|
2022-02-27 07:29:33 +00:00
|
|
|
// Used to decide which Stripe instance to point to
|
2022-02-02 03:23:06 +00:00
|
|
|
export const isProd = process.env.NEXT_PUBLIC_FIREBASE_ENV !== 'DEV'
|
2021-12-24 21:06:01 +00:00
|
|
|
|
2022-02-27 07:29:33 +00:00
|
|
|
const FIREBASE_CONFIGS = {
|
|
|
|
PROD: {
|
|
|
|
apiKey: 'AIzaSyDp3J57vLeAZCzxLD-vcPaGIkAmBoGOSYw',
|
|
|
|
authDomain: 'mantic-markets.firebaseapp.com',
|
|
|
|
projectId: 'mantic-markets',
|
|
|
|
storageBucket: 'mantic-markets.appspot.com',
|
|
|
|
messagingSenderId: '128925704902',
|
|
|
|
appId: '1:128925704902:web:f61f86944d8ffa2a642dc7',
|
|
|
|
measurementId: 'G-SSFK1Q138D',
|
|
|
|
},
|
|
|
|
DEV: {
|
|
|
|
apiKey: 'AIzaSyBoq3rzUa8Ekyo3ZaTnlycQYPRCA26VpOw',
|
|
|
|
authDomain: 'dev-mantic-markets.firebaseapp.com',
|
|
|
|
projectId: 'dev-mantic-markets',
|
|
|
|
storageBucket: 'dev-mantic-markets.appspot.com',
|
|
|
|
messagingSenderId: '134303100058',
|
|
|
|
appId: '1:134303100058:web:27f9ea8b83347251f80323',
|
|
|
|
measurementId: 'G-YJC9E37P37',
|
|
|
|
},
|
|
|
|
THEOREMONE: {
|
|
|
|
apiKey: 'AIzaSyBSXL6Ys7InNHnCKSy-_E_luhh4Fkj4Z6M',
|
|
|
|
authDomain: 'theoremone-manifold.firebaseapp.com',
|
|
|
|
projectId: 'theoremone-manifold',
|
|
|
|
storageBucket: 'theoremone-manifold.appspot.com',
|
|
|
|
messagingSenderId: '698012149198',
|
|
|
|
appId: '1:698012149198:web:b342af75662831aa84b79f',
|
|
|
|
measurementId: 'G-Y3EZ1WNT6E',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
const ENV = process.env.NEXT_PUBLIC_FIREBASE_ENV ?? 'PROD'
|
2022-03-02 00:36:52 +00:00
|
|
|
export const IS_PRIVATE_MANIFOLD = !['PROD', 'DEV'].includes(ENV)
|
2022-02-27 07:29:33 +00:00
|
|
|
// @ts-ignore
|
|
|
|
const firebaseConfig = FIREBASE_CONFIGS[ENV]
|
2021-12-08 16:42:19 +00:00
|
|
|
// Initialize Firebase
|
2022-01-21 23:21:46 +00:00
|
|
|
export const app = getApps().length ? getApp() : initializeApp(firebaseConfig)
|
|
|
|
|
2021-12-09 22:05:55 +00:00
|
|
|
export const db = getFirestore(app)
|