Hi Everyone ,
This blog is about how we can add firebase to angular and access the database .
Install firebase and @angular/fire using npm .
npm i @angular/fire
npm i firebase
Create a file in src/environments/environment/ts
And then , add firebase to app.module.ts
Next step is to access it via service
Hope this helps . Thanks !
This blog is about how we can add firebase to angular and access the database .
Install firebase and @angular/fire using npm .
npm i @angular/fire
npm i firebase
Create a file in src/environments/environment/ts
export const environment = {
production: false,
firebase:{
apiKey: "your api key",
authDomain: "test-15b0a.firebaseapp.com",
databaseURL: "https://test-15b0a.firebaseio.com",
projectId: "your project id ",
storageBucket: "test-15b0a.appspot.com",
messagingSenderId: "846752590782",
appId: "1:846752590782:web:cdfb301f4daf4448"
}
};
And then , add firebase to app.module.ts
Next step is to access it via service
Hope this helps . Thanks !
No comments:
Post a Comment