├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── models │ │ └── weather.model.ts │ └── services │ │ └── weather.service.ts ├── assets │ ├── .gitkeep │ ├── cold-c.png │ ├── cold-image.jpg │ ├── high-c.png │ ├── hot-image.jpg │ ├── humidity.png │ ├── weather-background.jpg │ └── wind.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/angular.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/models/weather.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/models/weather.model.ts -------------------------------------------------------------------------------- /src/app/services/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/app/services/weather.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/cold-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/cold-c.png -------------------------------------------------------------------------------- /src/assets/cold-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/cold-image.jpg -------------------------------------------------------------------------------- /src/assets/high-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/high-c.png -------------------------------------------------------------------------------- /src/assets/hot-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/hot-image.jpg -------------------------------------------------------------------------------- /src/assets/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/humidity.png -------------------------------------------------------------------------------- /src/assets/weather-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/weather-background.jpg -------------------------------------------------------------------------------- /src/assets/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/assets/wind.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaffer-Ali-Abubakker/Weather-app-Angular/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------