├── Angular 7 ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── appStructure.txt ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── images │ │ │ ├── image-list │ │ │ │ ├── image-list.component.html │ │ │ │ └── image-list.component.ts │ │ │ ├── image │ │ │ │ ├── image.component.html │ │ │ │ └── image.component.ts │ │ │ ├── images.component.html │ │ │ └── images.component.ts │ │ └── shared │ │ │ └── image.service.ts │ ├── assets │ │ ├── .gitkeep │ │ └── img │ │ │ ├── image_placeholder.jpg │ │ │ └── new_image.jpg │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── README.md └── webforIISdeployment.config /Angular 7/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/.editorconfig -------------------------------------------------------------------------------- /Angular 7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/.gitignore -------------------------------------------------------------------------------- /Angular 7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/README.md -------------------------------------------------------------------------------- /Angular 7/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/angular.json -------------------------------------------------------------------------------- /Angular 7/appStructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/appStructure.txt -------------------------------------------------------------------------------- /Angular 7/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Angular 7/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Angular 7/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Angular 7/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /Angular 7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/package-lock.json -------------------------------------------------------------------------------- /Angular 7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/package.json -------------------------------------------------------------------------------- /Angular 7/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/app.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Angular 7/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/app.component.ts -------------------------------------------------------------------------------- /Angular 7/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/app.module.ts -------------------------------------------------------------------------------- /Angular 7/src/app/images/image-list/image-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/images/image-list/image-list.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/images/image-list/image-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/images/image-list/image-list.component.ts -------------------------------------------------------------------------------- /Angular 7/src/app/images/image/image.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/images/image/image.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/images/image/image.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/images/image/image.component.ts -------------------------------------------------------------------------------- /Angular 7/src/app/images/images.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/images/images.component.html -------------------------------------------------------------------------------- /Angular 7/src/app/images/images.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/images/images.component.ts -------------------------------------------------------------------------------- /Angular 7/src/app/shared/image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/app/shared/image.service.ts -------------------------------------------------------------------------------- /Angular 7/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular 7/src/assets/img/image_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/assets/img/image_placeholder.jpg -------------------------------------------------------------------------------- /Angular 7/src/assets/img/new_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/assets/img/new_image.jpg -------------------------------------------------------------------------------- /Angular 7/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/browserslist -------------------------------------------------------------------------------- /Angular 7/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular 7/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/environments/environment.ts -------------------------------------------------------------------------------- /Angular 7/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/favicon.ico -------------------------------------------------------------------------------- /Angular 7/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/index.html -------------------------------------------------------------------------------- /Angular 7/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/karma.conf.js -------------------------------------------------------------------------------- /Angular 7/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/main.ts -------------------------------------------------------------------------------- /Angular 7/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/polyfills.ts -------------------------------------------------------------------------------- /Angular 7/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/styles.css -------------------------------------------------------------------------------- /Angular 7/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/test.ts -------------------------------------------------------------------------------- /Angular 7/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/tsconfig.app.json -------------------------------------------------------------------------------- /Angular 7/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/tsconfig.spec.json -------------------------------------------------------------------------------- /Angular 7/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/src/tslint.json -------------------------------------------------------------------------------- /Angular 7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/tsconfig.json -------------------------------------------------------------------------------- /Angular 7/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/Angular 7/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/README.md -------------------------------------------------------------------------------- /webforIISdeployment.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Angular-Image-Gallery-with-Firebase/HEAD/webforIISdeployment.config --------------------------------------------------------------------------------