├── .angular-cli.json ├── .editorconfig ├── .firebaserc ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── firebase.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app-routing.module.ts │ ├── app.module.ts │ ├── auth │ │ ├── auth-routing.module.ts │ │ ├── auth.module.ts │ │ ├── components │ │ │ ├── login-form │ │ │ │ ├── login-form.component.html │ │ │ │ ├── login-form.component.scss │ │ │ │ ├── login-form.component.spec.ts │ │ │ │ └── login-form.component.ts │ │ │ └── sign-up-form │ │ │ │ ├── sign-up-form.component.html │ │ │ │ ├── sign-up-form.component.scss │ │ │ │ ├── sign-up-form.component.spec.ts │ │ │ │ └── sign-up-form.component.ts │ │ ├── container │ │ │ ├── login │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ └── sign-up │ │ │ │ ├── sign-up.component.spec.ts │ │ │ │ └── sign-up.component.ts │ │ ├── interceptors │ │ │ └── token.interceptor.ts │ │ ├── models │ │ │ └── user.ts │ │ ├── services │ │ │ ├── auth-guard.service.ts │ │ │ ├── auth-guard.servicer.spec.ts │ │ │ └── auth.service.ts │ │ └── store │ │ │ ├── actions │ │ │ └── auth.actions.ts │ │ │ ├── effects │ │ │ └── auth.effect.ts │ │ │ └── reducers │ │ │ ├── auth.reducer.ts │ │ │ ├── auth.state.ts │ │ │ ├── index.ts │ │ │ ├── login.reducer.ts │ │ │ └── login.state.ts │ ├── core │ │ ├── components │ │ │ └── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ ├── containers │ │ │ └── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.scss │ │ │ │ ├── app.component.spec.ts │ │ │ │ └── app.component.ts │ │ ├── core.module.ts │ │ └── store │ │ │ ├── actions │ │ │ └── layout.actions.ts │ │ │ └── reducers │ │ │ ├── layout.reducer.ts │ │ │ └── root.reducer.ts │ ├── home │ │ ├── containers │ │ │ └── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ ├── home-routing.module.ts │ │ └── home.module.ts │ └── shared │ │ ├── animations │ │ └── fade-in.animation.ts │ │ ├── shared.module.ts │ │ └── utils.ts ├── assets │ ├── .gitkeep │ └── scss │ │ └── custom-bootstrap.scss ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/README.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/auth/auth-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/auth-routing.module.ts -------------------------------------------------------------------------------- /src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /src/app/auth/components/login-form/login-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/login-form/login-form.component.html -------------------------------------------------------------------------------- /src/app/auth/components/login-form/login-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/login-form/login-form.component.scss -------------------------------------------------------------------------------- /src/app/auth/components/login-form/login-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/login-form/login-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/auth/components/login-form/login-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/login-form/login-form.component.ts -------------------------------------------------------------------------------- /src/app/auth/components/sign-up-form/sign-up-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/sign-up-form/sign-up-form.component.html -------------------------------------------------------------------------------- /src/app/auth/components/sign-up-form/sign-up-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/auth/components/sign-up-form/sign-up-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/sign-up-form/sign-up-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/auth/components/sign-up-form/sign-up-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/components/sign-up-form/sign-up-form.component.ts -------------------------------------------------------------------------------- /src/app/auth/container/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/container/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/auth/container/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/container/login/login.component.ts -------------------------------------------------------------------------------- /src/app/auth/container/sign-up/sign-up.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/container/sign-up/sign-up.component.spec.ts -------------------------------------------------------------------------------- /src/app/auth/container/sign-up/sign-up.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/container/sign-up/sign-up.component.ts -------------------------------------------------------------------------------- /src/app/auth/interceptors/token.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/interceptors/token.interceptor.ts -------------------------------------------------------------------------------- /src/app/auth/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/models/user.ts -------------------------------------------------------------------------------- /src/app/auth/services/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/services/auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/auth/services/auth-guard.servicer.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/auth/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/auth/store/actions/auth.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/actions/auth.actions.ts -------------------------------------------------------------------------------- /src/app/auth/store/effects/auth.effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/effects/auth.effect.ts -------------------------------------------------------------------------------- /src/app/auth/store/reducers/auth.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/reducers/auth.reducer.ts -------------------------------------------------------------------------------- /src/app/auth/store/reducers/auth.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/reducers/auth.state.ts -------------------------------------------------------------------------------- /src/app/auth/store/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/reducers/index.ts -------------------------------------------------------------------------------- /src/app/auth/store/reducers/login.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/reducers/login.reducer.ts -------------------------------------------------------------------------------- /src/app/auth/store/reducers/login.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/auth/store/reducers/login.state.ts -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/components/header/header.component.scss -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/core/containers/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/containers/app/app.component.html -------------------------------------------------------------------------------- /src/app/core/containers/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/core/containers/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/containers/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/containers/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/containers/app/app.component.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/store/actions/layout.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/store/actions/layout.actions.ts -------------------------------------------------------------------------------- /src/app/core/store/reducers/layout.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/store/reducers/layout.reducer.ts -------------------------------------------------------------------------------- /src/app/core/store/reducers/root.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/core/store/reducers/root.reducer.ts -------------------------------------------------------------------------------- /src/app/home/containers/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/home/containers/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/containers/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/home/containers/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/home/containers/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/containers/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/home/containers/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/shared/animations/fade-in.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/shared/animations/fade-in.animation.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/app/shared/utils.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/custom-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/assets/scss/custom-bootstrap.scss -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviabird/angular-seed/HEAD/yarn.lock --------------------------------------------------------------------------------