Project created with Angular CLI
Add Firebase api keys and credentials from firebase console to use Firebase auth
- Authentication with
Firebase HttpInterceptorsto pass tokens to backend for validationErrorInterceptorsto logout erroneous usersMaterialUIor design componentsproxy.config.jsonto proxy to local server during developement.
To use
proxy.config.jsonadd the following inangular.jsonunder inserve
{
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "angular-material-ngrx-auth:build",
"proxyConfig": "proxy.config.json"
},
"configurations": {
"production": {
"browserTarget": "angular-material-ngrx-auth:build:production"
}
}
}.
├── LICENSE
├── README.md
├── angular.json
├── browserslist
├── e2e
│ ├── protractor.conf.js
│ ├── src
│ │ ├── app.e2e-spec.ts
│ │ └── app.po.ts
│ └── tsconfig.json
├── karma.conf.js
├── ngsw-config.json
├── package-lock.json
├── package.json
├── proxy.config.json
├── src
│ ├── app
│ │ ├── app-routing.module.ts
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── material.module.ts
│ │ ├── models
│ │ │ └── auth
│ │ │ ├── ILoggedInUser.ts
│ │ │ ├── ILoginError.ts
│ │ │ └── ILoginRequest.ts
│ │ ├── modules
│ │ │ ├── account
│ │ │ │ ├── account.component.css
│ │ │ │ ├── account.component.html
│ │ │ │ ├── account.component.ts
│ │ │ │ └── account.module.ts
│ │ │ ├── core
│ │ │ │ ├── auth.guard.ts
│ │ │ │ ├── core.module.ts
│ │ │ │ ├── error.interceptor.ts
│ │ │ │ └── http.interceptor.ts
│ │ │ ├── home
│ │ │ │ ├── home.component.css
│ │ │ │ ├── home.component.html
│ │ │ │ ├── home.component.ts
│ │ │ │ └── home.module.ts
│ │ │ ├── login
│ │ │ │ ├── login.component.css
│ │ │ │ ├── login.component.html
│ │ │ │ ├── login.component.ts
│ │ │ │ └── login.module.ts
│ │ │ └── shared
│ │ │ └── shared.module.ts
│ │ ├── services
│ │ │ ├── auth
│ │ │ │ └── auth.service.ts
│ │ │ └── pwa
│ │ │ └── pwa.service.ts
│ │ ├── store
│ │ │ ├── auth
│ │ │ │ ├── auth.actions.ts
│ │ │ │ ├── auth.effects.ts
│ │ │ │ ├── auth.events.ts
│ │ │ │ ├── auth.reducers.ts
│ │ │ │ └── auth.state.ts
│ │ │ └── core
│ │ └── utilities
│ │ └── mappers
│ │ └── auth.model.mapper.ts
│ ├── assets
│ │ └── icons
│ │ ├── icon-128x128.png
│ │ ├── icon-144x144.png
│ │ ├── icon-152x152.png
│ │ ├── icon-192x192.png
│ │ ├── icon-384x384.png
│ │ ├── icon-512x512.png
│ │ ├── icon-72x72.png
│ │ └── icon-96x96.png
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── index.html
│ ├── main.ts
│ ├── manifest.webmanifest
│ ├── polyfills.ts
│ ├── styles.css
│ └── test.ts
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.spec.json
└── tslint.json