angular and firebase crud code example
Example 1: angular firebase
ng add @angular/fire
Example 2: angular firebase crud
export const environment = {
production: false,
firebaseConfig : {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR_AUTH_DOMAIN",
databaseURL: "YOUR_DATABASE_URL",
projectId: "YOUR_PROJECT_ID",
storageBucket: "YOUR_STORAGE_BUCKET",
messagingSenderId: "YOUR_MESSAGING_SENDER_ID"
}
};