@weblauncher/material-administration
v0.14.3
Published
Material administration app components library
Downloads
25
Maintainers
Readme
Material Administration
This is an Angular component library to generate material design UI to render an administration app for different datasources (Firestore default).
Demo
https://weblauncher-administration.web.app/
User: [email protected]
Password: testing
Install
npm i @weblauncher/material-administration
Import
The next steps describes how to import for Firebase Firestore data source.
Provide firebase modules using @angular/fire
.
In your app.module.ts
import the module as below
imports: [
...
MaterialAdministrationModule
...
]
Add your site metadata provider as configured in site metadata configuration documentation
providers: [
...
{
provide: MAT_ADMINISTRATION_METADATA,
useValue: SiteMetadata
},
...
]