Skip to content

Commit

Permalink
edit: ...
Browse files Browse the repository at this point in the history
  • Loading branch information
kogepanh committed Jan 25, 2021
1 parent a9f8834 commit b599be0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?

# Firebase Config
src/firebase.js
20 changes: 20 additions & 0 deletions src/firebase.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import firebase from "firebase";
import "firebase/auth";

const firebaseConfig = {
apiKey: "AIzaSyAKF9Cdf7AEB631RMdVlgxBAdY0p9LNGo8",
authDomain: "open-nislab.firebaseapp.com",
databaseURL: "https://open-nislab-default-rtdb.firebaseio.com",
projectId: "open-nislab",
storageBucket: "open-nislab.appspot.com",
messagingSenderId: "1082535253333",
appId: "1:1082535253333:web:c0e4499e6f07a6fa970bdc",
measurementId: "G-4T0MBY68DT"

};

// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();

export default firebase;

0 comments on commit b599be0

Please sign in to comment.