Firebase
Use Firebase authentication, upload, storage, CRUD functionalities
Authentication Using Firebase
This starter provides you with Login, Signup and Reset Password functionality using Firebase Authentication.
You can test the authentication in the already provided app code.
When you want to attach the authentication process to your own Firebase project, simply get the config
parameters from Firebase console.

Once you have the config
parameters, paste them in the environment
files in the starter code. There are two environment files, one for dev
and one for prod
app.

This configuration can be imported in app.module.ts
and main.ts
by importing the environment
import { environment } from 'src/environments/environment';
Code Structure

The src/app/pages/firebase
folder contains the code related to
Login - Email login
Signup - Email signup
Image Upload
CRUD data functions -
firebase-home
These files use service data and functions provided in src/app/services/firestore
filestorage.service.ts
- For storage purposefirebase-authentication.service.ts
- For Authentication functionsfirestore.services.ts
- For CRUD functions
Last updated
Was this helpful?