forked from scorelab/Codelabz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scorelab#1213 issue: Update signupForm.jsx
- Loading branch information
1 parent
3b0952c
commit fd19fd3
Showing
4 changed files
with
37 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
|
||
VITE_APP_FIREBASE_API_KEY=<FIREBASE_API_KEY> | ||
VITE_APP_AUTH_DOMAIN=<FIREBASE_AUTH_DOMAIN> | ||
VITE_APP_FIREBASE_PROJECT_ID=<FIREBASE_PROJECT_ID> | ||
VITE_APP_FIREBASE_MESSAGING_SENDER_ID=<FIREBASE_MESSAGING_SENDER_ID> | ||
VITE_APP_FIREBASE_APP_ID=<FIREBASE_APP_ID> | ||
VITE_APP_FIREBASE_MEASUREMENTID=<FIREBASE_MEASUREMENTID> | ||
VITE_APP_DATABASE_URL=<FIREBASE_DATABASE_URL> | ||
VITE_APP_FIREBASE_FCM_VAPID_KEY=<FIREBASE_VAPID_KEY> | ||
VITE_APP_USE_EMULATOR=<USE_EMULATOR> | ||
CYPRESS_PROJECT_ID=<CYPRESS_PROJECT_ID> | ||
VITE_APP_FIREBASE_API_KEY=AIzaSyAJrzKc_faVkjCuhJv9ZPXI88WRL7PNCMU | ||
VITE_APP_AUTH_DOMAIN=codelabz-3ea7c.firebaseapp.com | ||
VITE_APP_FIREBASE_PROJECT_ID=codelabz-3ea7c | ||
VITE_APP_FIREBASE_MESSAGING_SENDER_ID=230720361379 | ||
VITE_APP_FIREBASE_APP_ID=1:230720361379:web:ecc6d5e6cd1c3efeea8016 | ||
VITE_APP_FIREBASE_MEASUREMENTID=G-5FBT2HKSSB | ||
VITE_APP_DATABASE_URL=https://nam5.firebaseio.com | ||
VITE_APP_FIREBASE_FCM_VAPID_KEY=BB3Uxo6XAQTVX11dfyVwCtIWcpg4yI5D-Tm2MCZCI_BUf1VT3TsQ1bq_suKixNM-793drtqUbqAk32bWZv4-D9I | ||
VITE_APP_USE_EMULATOR="true" | ||
CYPRESS_PROJECT_ID="z3xhvn" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Import the functions you need from the SDKs you need | ||
import { initializeApp } from "firebase/app"; | ||
import { getAnalytics } from "firebase/analytics"; | ||
// TODO: Add SDKs for Firebase products that you want to use | ||
// https://firebase.google.com/docs/web/setup#available-libraries | ||
|
||
// Your web app's Firebase configuration | ||
// For Firebase JS SDK v7.20.0 and later, measurementId is optional | ||
const firebaseConfig = { | ||
apiKey: "AIzaSyAJrzKc_faVkjCuhJv9ZPXI88WRL7PNCMU", | ||
authDomain: "codelabz-3ea7c.firebaseapp.com", | ||
projectId: "codelabz-3ea7c", | ||
storageBucket: "codelabz-3ea7c.appspot.com", | ||
messagingSenderId: "230720361379", | ||
appId: "1:230720361379:web:ecc6d5e6cd1c3efeea8016", | ||
measurementId: "G-5FBT2HKSSB" | ||
}; | ||
|
||
// Initialize Firebase | ||
const app = initializeApp(firebaseConfig); | ||
const analytics = getAnalytics(app); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters