├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── functions ├── .funcignore ├── .gitignore ├── heroes-delete │ ├── function.json │ └── index.ts ├── heroes-get │ ├── function.json │ └── index.ts ├── heroes-post │ ├── function.json │ └── index.ts ├── heroes-put │ ├── function.json │ └── index.ts ├── host.json ├── local.settings.example.json ├── package-lock.json ├── package.json ├── proxies.json ├── services │ ├── config.ts │ ├── hero.service.ts │ ├── index.ts │ └── villain.service.ts ├── tsconfig.json ├── villains-delete │ ├── function.json │ └── index.ts ├── villains-get │ ├── function.json │ └── index.ts ├── villains-post │ ├── function.json │ └── index.ts └── villains-put │ ├── function.json │ └── index.ts ├── package.json ├── server ├── index.ts ├── routes │ ├── hero.routes.ts │ ├── index.ts │ └── villain.routes.ts ├── server.ts ├── services │ ├── config.ts │ ├── hero.service.ts │ ├── index.ts │ └── villain.service.ts └── tsconfig.json ├── src ├── app │ ├── about.component.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ ├── core.module.ts │ │ ├── header-bar-brand.component.ts │ │ ├── header-bar-links.component.ts │ │ ├── header-bar.component.ts │ │ ├── index.ts │ │ ├── model │ │ │ ├── hero.ts │ │ │ ├── index.ts │ │ │ └── villain.ts │ │ ├── nav.component.ts │ │ └── not-found.component.ts │ ├── heroes │ │ ├── hero-detail │ │ │ ├── hero-detail.component.html │ │ │ └── hero-detail.component.ts │ │ ├── hero-list │ │ │ ├── hero-list.component.html │ │ │ └── hero-list.component.ts │ │ ├── hero.service.ts │ │ ├── heroes.module.ts │ │ └── heroes │ │ │ ├── heroes.component.html │ │ │ └── heroes.component.ts │ ├── shared │ │ ├── button-footer.component.ts │ │ ├── card-content.component.ts │ │ ├── list-header.component.ts │ │ ├── modal.component.ts │ │ └── shared.module.ts │ ├── store │ │ ├── config.ts │ │ ├── entity-metadata.ts │ │ └── store.module.ts │ └── villains │ │ ├── villain-detail │ │ ├── villain-detail.component.html │ │ └── villain-detail.component.ts │ │ ├── villain-list │ │ ├── villain-list.component.html │ │ └── villain-list.component.ts │ │ ├── villain.service.ts │ │ ├── villains.module.ts │ │ └── villains │ │ ├── villains.component.html │ │ └── villains.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── proxy.conf.json ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /functions/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/.funcignore -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/heroes-delete/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-delete/function.json -------------------------------------------------------------------------------- /functions/heroes-delete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-delete/index.ts -------------------------------------------------------------------------------- /functions/heroes-get/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-get/function.json -------------------------------------------------------------------------------- /functions/heroes-get/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-get/index.ts -------------------------------------------------------------------------------- /functions/heroes-post/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-post/function.json -------------------------------------------------------------------------------- /functions/heroes-post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-post/index.ts -------------------------------------------------------------------------------- /functions/heroes-put/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-put/function.json -------------------------------------------------------------------------------- /functions/heroes-put/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/heroes-put/index.ts -------------------------------------------------------------------------------- /functions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /functions/local.settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/local.settings.example.json -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/proxies.json -------------------------------------------------------------------------------- /functions/services/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/services/config.ts -------------------------------------------------------------------------------- /functions/services/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/services/hero.service.ts -------------------------------------------------------------------------------- /functions/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/services/index.ts -------------------------------------------------------------------------------- /functions/services/villain.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/services/villain.service.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /functions/villains-delete/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-delete/function.json -------------------------------------------------------------------------------- /functions/villains-delete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-delete/index.ts -------------------------------------------------------------------------------- /functions/villains-get/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-get/function.json -------------------------------------------------------------------------------- /functions/villains-get/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-get/index.ts -------------------------------------------------------------------------------- /functions/villains-post/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-post/function.json -------------------------------------------------------------------------------- /functions/villains-post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-post/index.ts -------------------------------------------------------------------------------- /functions/villains-put/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-put/function.json -------------------------------------------------------------------------------- /functions/villains-put/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/functions/villains-put/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/package.json -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/routes/hero.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/routes/hero.routes.ts -------------------------------------------------------------------------------- /server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/routes/index.ts -------------------------------------------------------------------------------- /server/routes/villain.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/routes/villain.routes.ts -------------------------------------------------------------------------------- /server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/server.ts -------------------------------------------------------------------------------- /server/services/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/services/config.ts -------------------------------------------------------------------------------- /server/services/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/services/hero.service.ts -------------------------------------------------------------------------------- /server/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/services/index.ts -------------------------------------------------------------------------------- /server/services/villain.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/services/villain.service.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /src/app/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/about.component.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/header-bar-brand.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/header-bar-brand.component.ts -------------------------------------------------------------------------------- /src/app/core/header-bar-links.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/header-bar-links.component.ts -------------------------------------------------------------------------------- /src/app/core/header-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/header-bar.component.ts -------------------------------------------------------------------------------- /src/app/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/index.ts -------------------------------------------------------------------------------- /src/app/core/model/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/model/hero.ts -------------------------------------------------------------------------------- /src/app/core/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/model/index.ts -------------------------------------------------------------------------------- /src/app/core/model/villain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/model/villain.ts -------------------------------------------------------------------------------- /src/app/core/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/nav.component.ts -------------------------------------------------------------------------------- /src/app/core/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/core/not-found.component.ts -------------------------------------------------------------------------------- /src/app/heroes/hero-detail/hero-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/hero-detail/hero-detail.component.html -------------------------------------------------------------------------------- /src/app/heroes/hero-detail/hero-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/hero-detail/hero-detail.component.ts -------------------------------------------------------------------------------- /src/app/heroes/hero-list/hero-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/hero-list/hero-list.component.html -------------------------------------------------------------------------------- /src/app/heroes/hero-list/hero-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/hero-list/hero-list.component.ts -------------------------------------------------------------------------------- /src/app/heroes/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/hero.service.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/heroes.module.ts -------------------------------------------------------------------------------- /src/app/heroes/heroes/heroes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/heroes/heroes.component.html -------------------------------------------------------------------------------- /src/app/heroes/heroes/heroes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/heroes/heroes/heroes.component.ts -------------------------------------------------------------------------------- /src/app/shared/button-footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/shared/button-footer.component.ts -------------------------------------------------------------------------------- /src/app/shared/card-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/shared/card-content.component.ts -------------------------------------------------------------------------------- /src/app/shared/list-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/shared/list-header.component.ts -------------------------------------------------------------------------------- /src/app/shared/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/shared/modal.component.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/store/config.ts -------------------------------------------------------------------------------- /src/app/store/entity-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/store/entity-metadata.ts -------------------------------------------------------------------------------- /src/app/store/store.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/store/store.module.ts -------------------------------------------------------------------------------- /src/app/villains/villain-detail/villain-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villain-detail/villain-detail.component.html -------------------------------------------------------------------------------- /src/app/villains/villain-detail/villain-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villain-detail/villain-detail.component.ts -------------------------------------------------------------------------------- /src/app/villains/villain-list/villain-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villain-list/villain-list.component.html -------------------------------------------------------------------------------- /src/app/villains/villain-list/villain-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villain-list/villain-list.component.ts -------------------------------------------------------------------------------- /src/app/villains/villain.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villain.service.ts -------------------------------------------------------------------------------- /src/app/villains/villains.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villains.module.ts -------------------------------------------------------------------------------- /src/app/villains/villains/villains.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villains/villains.component.html -------------------------------------------------------------------------------- /src/app/villains/villains/villains.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/app/villains/villains/villains.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/proxy.conf.json -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/heroes-angular-serverless/HEAD/tslint.json --------------------------------------------------------------------------------