Skip to content

Commit

Permalink
Temp fix. Disabled .env
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhijeetMankani committed Dec 27, 2024
1 parent a05917f commit 80a8739
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# !DO NOT USE FOR NOW. USE hardcoded firebase.js values instead instead
FIREBASE_API_KEY=
FIREBASE_AUTH_DOMAIN=
FIREBASE_PROJECT_ID=
Expand Down
14 changes: 7 additions & 7 deletions src/firebase.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import { getFirestore } from 'firebase/firestore';
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: process.env.FIREBASE_API_KEY,
authDomain: process.env.FIREBASE_AUTH_DOMAIN,
projectId: process.env.FIREBASE_PROJECT_ID,
storageBucket: process.env.FIREBASE_STORAGE_BUCKET,
messagingSenderId: process.env.FIREBASE_MESSAGING_SENDER_ID,
appId: process.env.FIREBASE_APP_ID,
measurementId: process.env.FIREBASE_MEASUREMENT_ID,
apiKey: 'AIzaSyARCF1xMGsHdM2lVRLCda-Ws5QF0kORfyQ',
authDomain: 'amc-frontend.firebaseapp.com',
projectId: 'amc-frontend',
storageBucket: 'amc-frontend.firebasestorage.app',
messagingSenderId: '691134730253',
appId: '1:691134730253:web:d21d9762c5cb65a2f68544',
measurementId: 'G-XJZXGEQGLQ',
};

// Initialize Firebase
Expand Down

0 comments on commit 80a8739

Please sign in to comment.