├── .angular-cli.json ├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CLI-commands.md ├── README.md ├── catalog-info.yaml ├── db.json ├── package.json ├── proxy.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routes.ts │ ├── appcommon │ │ ├── appcommon.module.ts │ │ ├── directives │ │ │ └── busy.directive.ts │ │ ├── models │ │ │ ├── roles.ts │ │ │ └── user.ts │ │ └── services │ │ │ ├── app.service.ts │ │ │ └── user-info.service.ts │ ├── components │ │ ├── animations │ │ │ └── router.animations.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ └── header.component.ts │ │ └── page-not-found │ │ │ ├── page-not-found.component.html │ │ │ ├── page-not-found.component.scss │ │ │ └── page-not-found.component.ts │ ├── demo │ │ ├── chartist-demo │ │ │ ├── chartist-demo-routing.module.ts │ │ │ ├── chartist-demo.module.ts │ │ │ └── components │ │ │ │ └── basic-chartist │ │ │ │ ├── basic-chartist.component.html │ │ │ │ ├── basic-chartist.component.scss │ │ │ │ └── basic-chartist.component.ts │ │ ├── components │ │ │ └── demo-landing │ │ │ │ ├── demo-landing.component.html │ │ │ │ ├── demo-landing.component.scss │ │ │ │ └── demo-landing.component.ts │ │ ├── demo-routing.module.ts │ │ ├── demo.module.ts │ │ └── json-form-demo │ │ │ ├── components │ │ │ └── json-form │ │ │ │ ├── json-form.component.html │ │ │ │ ├── json-form.component.scss │ │ │ │ └── json-form.component.ts │ │ │ ├── json-form-demo-routing.module.ts │ │ │ └── json-form-demo.module.ts │ └── home │ │ ├── components │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ └── home.component.ts │ │ └── index.ts │ │ ├── home-routing.module.ts │ │ ├── home.module.ts │ │ ├── models │ │ └── post.ts │ │ └── services │ │ └── json-server.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── tsconfig.app.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/.travis.yml -------------------------------------------------------------------------------- /CLI-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/CLI-commands.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/README.md -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/package.json -------------------------------------------------------------------------------- /proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/proxy.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/appcommon/appcommon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/appcommon/appcommon.module.ts -------------------------------------------------------------------------------- /src/app/appcommon/directives/busy.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/appcommon/directives/busy.directive.ts -------------------------------------------------------------------------------- /src/app/appcommon/models/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/appcommon/models/roles.ts -------------------------------------------------------------------------------- /src/app/appcommon/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/appcommon/models/user.ts -------------------------------------------------------------------------------- /src/app/appcommon/services/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/appcommon/services/app.service.ts -------------------------------------------------------------------------------- /src/app/appcommon/services/user-info.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/appcommon/services/user-info.service.ts -------------------------------------------------------------------------------- /src/app/components/animations/router.animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/components/animations/router.animations.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- 1 |
2 | © Vijay Dharap, Infosys, 2018 3 |
4 | -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/components/footer/footer.component.scss -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/components/header/header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- 1 |2 | page-not-found works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/components/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/components/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /src/app/demo/chartist-demo/chartist-demo-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/chartist-demo/chartist-demo-routing.module.ts -------------------------------------------------------------------------------- /src/app/demo/chartist-demo/chartist-demo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/chartist-demo/chartist-demo.module.ts -------------------------------------------------------------------------------- /src/app/demo/chartist-demo/components/basic-chartist/basic-chartist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/chartist-demo/components/basic-chartist/basic-chartist.component.html -------------------------------------------------------------------------------- /src/app/demo/chartist-demo/components/basic-chartist/basic-chartist.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/demo/chartist-demo/components/basic-chartist/basic-chartist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/chartist-demo/components/basic-chartist/basic-chartist.component.ts -------------------------------------------------------------------------------- /src/app/demo/components/demo-landing/demo-landing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/components/demo-landing/demo-landing.component.html -------------------------------------------------------------------------------- /src/app/demo/components/demo-landing/demo-landing.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/demo/components/demo-landing/demo-landing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/components/demo-landing/demo-landing.component.ts -------------------------------------------------------------------------------- /src/app/demo/demo-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/demo-routing.module.ts -------------------------------------------------------------------------------- /src/app/demo/demo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/demo.module.ts -------------------------------------------------------------------------------- /src/app/demo/json-form-demo/components/json-form/json-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/json-form-demo/components/json-form/json-form.component.html -------------------------------------------------------------------------------- /src/app/demo/json-form-demo/components/json-form/json-form.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/demo/json-form-demo/components/json-form/json-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/json-form-demo/components/json-form/json-form.component.ts -------------------------------------------------------------------------------- /src/app/demo/json-form-demo/json-form-demo-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/json-form-demo/json-form-demo-routing.module.ts -------------------------------------------------------------------------------- /src/app/demo/json-form-demo/json-form-demo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/demo/json-form-demo/json-form-demo.module.ts -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/home/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/home/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/home/components/index.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/models/post.ts: -------------------------------------------------------------------------------- 1 | export interface Post { 2 | id?: number; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/home/services/json-server.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/app/home/services/json-server.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | LOG_LEVEL: 'warn' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infosys/enterprise-angular-seed/HEAD/tslint.json --------------------------------------------------------------------------------