├── .circleci ├── config.stage4.yml ├── config.stage9.yml └── config.yml ├── .editorconfig ├── .eslintrc.json ├── .gcloudignore ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── verifyProjects.yml.broken ├── .gitignore ├── .pa11yci ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── angular.json ├── bin └── verifyProjects.js ├── cypress.config.ts ├── cypress ├── e2e │ ├── app.cy.ts │ ├── search.cy.ts │ └── simple-search.cy.ts ├── fixtures │ └── example.json ├── support │ ├── commands.ts │ ├── component-index.html │ ├── component.ts │ └── e2e.ts └── tsconfig.json ├── dependabot.yml ├── dev-norms.md ├── example.env ├── karma.conf.js ├── package.json ├── projects ├── chat-gpt-dec23 │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ └── weather │ │ │ │ ├── weather.component.css │ │ │ │ ├── weather.component.cy.ts │ │ │ │ ├── weather.component.html │ │ │ │ ├── weather.component.ts │ │ │ │ ├── weather.service.spec.ts │ │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── chat-gpt │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── weather-display │ │ │ │ ├── weather-display.component.css │ │ │ │ ├── weather-display.component.html │ │ │ │ ├── weather-display.component.spec.ts │ │ │ │ └── weather-display.component.ts │ │ │ ├── weather.service.spec.ts │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ └── main.ts │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── signal-store │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── city-search │ │ │ │ ├── city-search.component.css │ │ │ │ ├── city-search.component.html │ │ │ │ └── city-search.component.ts │ │ │ ├── current-weather │ │ │ │ ├── current-weather.component.css │ │ │ │ ├── current-weather.component.html │ │ │ │ └── current-weather.component.ts │ │ │ ├── postal-code │ │ │ │ └── postal-code.service.ts │ │ │ ├── store │ │ │ │ ├── interfaces.ts │ │ │ │ └── weather.store.ts │ │ │ └── weather │ │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ ├── img │ │ │ │ └── sunny.svg │ │ │ └── styles │ │ │ │ └── spinner.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── stage12 │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── actions │ │ │ │ ├── search.actions.spec.ts │ │ │ │ └── search.actions.ts │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── city-search │ │ │ │ ├── city-search.component.css │ │ │ │ ├── city-search.component.html │ │ │ │ ├── city-search.component.spec.ts │ │ │ │ └── city-search.component.ts │ │ │ ├── current-weather │ │ │ │ ├── current-weather.component.css │ │ │ │ ├── current-weather.component.html │ │ │ │ ├── current-weather.component.nobed.spec.ts │ │ │ │ ├── current-weather.component.spec.ts │ │ │ │ └── current-weather.component.ts │ │ │ ├── effects │ │ │ │ ├── current-weather.effects.spec.ts │ │ │ │ └── current-weather.effects.ts │ │ │ ├── interfaces.ts │ │ │ ├── postal-code │ │ │ │ ├── postal-code.service.spec.ts │ │ │ │ └── postal-code.service.ts │ │ │ ├── reducers │ │ │ │ ├── index.ts │ │ │ │ ├── search.reducer.spec.ts │ │ │ │ └── search.reducer.ts │ │ │ └── weather │ │ │ │ ├── weather.service.fake.ts │ │ │ │ ├── weather.service.spec.ts │ │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ ├── img │ │ │ │ └── sunny.svg │ │ │ └── styles │ │ │ │ └── spinner.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── stage2 │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.config.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── stage3 │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── current-weather │ │ │ │ ├── current-weather.component.css │ │ │ │ ├── current-weather.component.html │ │ │ │ ├── current-weather.component.spec.ts │ │ │ │ └── current-weather.component.ts │ │ │ ├── interfaces.ts │ │ │ └── weather │ │ │ │ ├── weather.service.spec.ts │ │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ └── img │ │ │ │ └── sunny.svg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── stage4 │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── current-weather │ │ │ │ ├── current-weather.component.css │ │ │ │ ├── current-weather.component.fake.spec.ts │ │ │ │ ├── current-weather.component.html │ │ │ │ ├── current-weather.component.spec.ts │ │ │ │ └── current-weather.component.ts │ │ │ ├── interfaces.ts │ │ │ └── weather │ │ │ │ ├── weather.service.fake.ts │ │ │ │ ├── weather.service.spec.ts │ │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ └── img │ │ │ │ └── sunny.svg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── stage5 │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ └── spec.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── component-index.html │ │ │ ├── component.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ ├── current-weather │ │ │ │ ├── current-weather.component.css │ │ │ │ ├── current-weather.component.html │ │ │ │ ├── current-weather.component.spec.ts │ │ │ │ └── current-weather.component.ts │ │ │ ├── interfaces.ts │ │ │ └── weather │ │ │ │ ├── weather.service.fake.ts │ │ │ │ ├── weather.service.spec.ts │ │ │ │ └── weather.service.ts │ │ ├── assets │ │ │ └── img │ │ │ │ └── sunny.svg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json └── stage6 │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── cypress │ ├── e2e │ │ └── spec.cy.ts │ ├── fixtures │ │ └── example.json │ ├── support │ │ ├── commands.ts │ │ ├── component-index.html │ │ ├── component.ts │ │ └── e2e.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── src │ ├── app │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── city-search-tpldriven │ │ │ ├── city-search-tpldriven.component.css │ │ │ ├── city-search-tpldriven.component.html │ │ │ ├── city-search-tpldriven.component.spec.ts │ │ │ └── city-search-tpldriven.component.ts │ │ ├── city-search │ │ │ ├── city-search.component.css │ │ │ ├── city-search.component.html │ │ │ ├── city-search.component.spec.ts │ │ │ └── city-search.component.ts │ │ ├── current-weather │ │ │ ├── current-weather.component.css │ │ │ ├── current-weather.component.html │ │ │ ├── current-weather.component.spec.ts │ │ │ └── current-weather.component.ts │ │ ├── interfaces.ts │ │ ├── postal-code │ │ │ ├── postal-code.service.spec.ts │ │ │ └── postal-code.service.ts │ │ └── weather │ │ │ ├── weather.service.fake.ts │ │ │ ├── weather.service.spec.ts │ │ │ └── weather.service.ts │ ├── assets │ │ └── img │ │ │ └── sunny.svg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.scss │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── pull_request_template.md ├── src ├── app │ ├── actions │ │ ├── search.actions.spec.ts │ │ └── search.actions.ts │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.ts │ ├── city-search │ │ ├── city-search.component.css │ │ ├── city-search.component.html │ │ ├── city-search.component.spec.ts │ │ └── city-search.component.ts │ ├── current-weather │ │ ├── current-weather.component.css │ │ ├── current-weather.component.html │ │ ├── current-weather.component.spec.ts │ │ └── current-weather.component.ts │ ├── effects │ │ ├── current-weather.effects.spec.ts │ │ └── current-weather.effects.ts │ ├── interfaces.ts │ ├── postal-code │ │ ├── postal-code.service.spec.ts │ │ └── postal-code.service.ts │ ├── reducers │ │ ├── index.ts │ │ ├── search.reducer.spec.ts │ │ └── search.reducer.ts │ ├── store │ │ ├── weather.store.spec.ts │ │ └── weather.store.ts │ └── weather │ │ ├── weather.service.fake.ts │ │ ├── weather.service.spec.ts │ │ └── weather.service.ts ├── assets │ ├── img │ │ └── sunny.svg │ └── styles │ │ └── spinner.css ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.circleci/config.stage4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.circleci/config.stage4.yml -------------------------------------------------------------------------------- /.circleci/config.stage9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.circleci/config.stage9.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- 1 | /* 2 | !Dockerfile 3 | !dist/ 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/verifyProjects.yml.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.github/workflows/verifyProjects.yml.broken -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.pa11yci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.pa11yci -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /coverage 3 | .angular 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/angular.json -------------------------------------------------------------------------------- /bin/verifyProjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/bin/verifyProjects.js -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/e2e/app.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/search.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/e2e/search.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/simple-search.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/e2e/simple-search.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/support/component-index.html -------------------------------------------------------------------------------- /cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/support/component.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/dependabot.yml -------------------------------------------------------------------------------- /dev-norms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/dev-norms.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/example.env -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/package.json -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/app.component.html -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/environments/environment.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/weather/weather.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/weather/weather.component.css -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/weather/weather.component.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/weather/weather.component.cy.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/weather/weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/weather/weather.component.html -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/weather/weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/weather/weather.component.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/favicon.ico -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/index.html -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/main.ts -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/src/styles.scss -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/tsconfig.app.json -------------------------------------------------------------------------------- /projects/chat-gpt-dec23/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt-dec23/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/chat-gpt/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress.config.ts -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/chat-gpt/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/app.component.html -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/weather-display/weather-display.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/weather-display/weather-display.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/weather-display/weather-display.component.html -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/weather-display/weather-display.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/weather-display/weather-display.component.spec.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/weather-display/weather-display.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/weather-display/weather-display.component.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/app/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/app/weather.service.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/chat-gpt/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/chat-gpt/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/favicon.ico -------------------------------------------------------------------------------- /projects/chat-gpt/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/index.html -------------------------------------------------------------------------------- /projects/chat-gpt/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/src/main.ts -------------------------------------------------------------------------------- /projects/chat-gpt/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/tsconfig.app.json -------------------------------------------------------------------------------- /projects/chat-gpt/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/chat-gpt/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/signal-store/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/.eslintrc.json -------------------------------------------------------------------------------- /projects/signal-store/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/cypress.config.ts -------------------------------------------------------------------------------- /projects/signal-store/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/karma.conf.js -------------------------------------------------------------------------------- /projects/signal-store/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/city-search/city-search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/city-search/city-search.component.css -------------------------------------------------------------------------------- /projects/signal-store/src/app/city-search/city-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/city-search/city-search.component.html -------------------------------------------------------------------------------- /projects/signal-store/src/app/city-search/city-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/city-search/city-search.component.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/current-weather/current-weather.component.css -------------------------------------------------------------------------------- /projects/signal-store/src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /projects/signal-store/src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/postal-code/postal-code.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/postal-code/postal-code.service.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/store/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/store/interfaces.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/store/weather.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/store/weather.store.ts -------------------------------------------------------------------------------- /projects/signal-store/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/signal-store/src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /projects/signal-store/src/assets/styles/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/assets/styles/spinner.css -------------------------------------------------------------------------------- /projects/signal-store/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/signal-store/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/signal-store/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/favicon.ico -------------------------------------------------------------------------------- /projects/signal-store/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/index.html -------------------------------------------------------------------------------- /projects/signal-store/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/main.ts -------------------------------------------------------------------------------- /projects/signal-store/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/src/styles.scss -------------------------------------------------------------------------------- /projects/signal-store/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/tsconfig.app.json -------------------------------------------------------------------------------- /projects/signal-store/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/signal-store/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/stage12/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/.eslintrc.json -------------------------------------------------------------------------------- /projects/stage12/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress.config.ts -------------------------------------------------------------------------------- /projects/stage12/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/stage12/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/stage12/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/stage12/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/stage12/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/stage12/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/stage12/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/stage12/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/karma.conf.js -------------------------------------------------------------------------------- /projects/stage12/src/app/actions/search.actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/actions/search.actions.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/actions/search.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/actions/search.actions.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/city-search/city-search.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage12/src/app/city-search/city-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/city-search/city-search.component.html -------------------------------------------------------------------------------- /projects/stage12/src/app/city-search/city-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/city-search/city-search.component.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/city-search/city-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/city-search/city-search.component.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/current-weather/current-weather.component.css -------------------------------------------------------------------------------- /projects/stage12/src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /projects/stage12/src/app/current-weather/current-weather.component.nobed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/current-weather/current-weather.component.nobed.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/current-weather/current-weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/current-weather/current-weather.component.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/effects/current-weather.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/effects/current-weather.effects.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/effects/current-weather.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/effects/current-weather.effects.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/interfaces.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/postal-code/postal-code.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/postal-code/postal-code.service.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/postal-code/postal-code.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/postal-code/postal-code.service.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/reducers/index.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/reducers/search.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/reducers/search.reducer.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/reducers/search.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/reducers/search.reducer.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/weather/weather.service.fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/weather/weather.service.fake.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/stage12/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/stage12/src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /projects/stage12/src/assets/styles/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/assets/styles/spinner.css -------------------------------------------------------------------------------- /projects/stage12/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/stage12/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/stage12/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/favicon.ico -------------------------------------------------------------------------------- /projects/stage12/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/index.html -------------------------------------------------------------------------------- /projects/stage12/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/main.ts -------------------------------------------------------------------------------- /projects/stage12/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/src/styles.scss -------------------------------------------------------------------------------- /projects/stage12/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/tsconfig.app.json -------------------------------------------------------------------------------- /projects/stage12/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage12/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/stage2/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/.eslintrc.json -------------------------------------------------------------------------------- /projects/stage2/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress.config.ts -------------------------------------------------------------------------------- /projects/stage2/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/stage2/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/stage2/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/stage2/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/stage2/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/stage2/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/stage2/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/stage2/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/karma.conf.js -------------------------------------------------------------------------------- /projects/stage2/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage2/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/app/app.component.html -------------------------------------------------------------------------------- /projects/stage2/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/stage2/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/stage2/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/stage2/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage2/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | } 4 | -------------------------------------------------------------------------------- /projects/stage2/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/stage2/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/favicon.ico -------------------------------------------------------------------------------- /projects/stage2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/index.html -------------------------------------------------------------------------------- /projects/stage2/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/main.ts -------------------------------------------------------------------------------- /projects/stage2/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/src/styles.scss -------------------------------------------------------------------------------- /projects/stage2/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/tsconfig.app.json -------------------------------------------------------------------------------- /projects/stage2/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage2/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/stage3/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/.eslintrc.json -------------------------------------------------------------------------------- /projects/stage3/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress.config.ts -------------------------------------------------------------------------------- /projects/stage3/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/stage3/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/stage3/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/stage3/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/stage3/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/stage3/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/stage3/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/stage3/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/karma.conf.js -------------------------------------------------------------------------------- /projects/stage3/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage3/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/app.component.html -------------------------------------------------------------------------------- /projects/stage3/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage3/src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /projects/stage3/src/app/current-weather/current-weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/current-weather/current-weather.component.spec.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/interfaces.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/stage3/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/stage3/src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /projects/stage3/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/stage3/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/stage3/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/favicon.ico -------------------------------------------------------------------------------- /projects/stage3/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/index.html -------------------------------------------------------------------------------- /projects/stage3/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/main.ts -------------------------------------------------------------------------------- /projects/stage3/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/src/styles.scss -------------------------------------------------------------------------------- /projects/stage3/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/tsconfig.app.json -------------------------------------------------------------------------------- /projects/stage3/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage3/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/stage4/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/.eslintrc.json -------------------------------------------------------------------------------- /projects/stage4/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress.config.ts -------------------------------------------------------------------------------- /projects/stage4/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/stage4/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/stage4/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/stage4/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/stage4/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/stage4/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/stage4/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/stage4/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/karma.conf.js -------------------------------------------------------------------------------- /projects/stage4/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage4/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/app.component.html -------------------------------------------------------------------------------- /projects/stage4/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage4/src/app/current-weather/current-weather.component.fake.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/current-weather/current-weather.component.fake.spec.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /projects/stage4/src/app/current-weather/current-weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/current-weather/current-weather.component.spec.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/interfaces.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/weather/weather.service.fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/weather/weather.service.fake.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/stage4/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/stage4/src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /projects/stage4/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/stage4/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/stage4/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/favicon.ico -------------------------------------------------------------------------------- /projects/stage4/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/index.html -------------------------------------------------------------------------------- /projects/stage4/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/main.ts -------------------------------------------------------------------------------- /projects/stage4/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/src/styles.scss -------------------------------------------------------------------------------- /projects/stage4/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/tsconfig.app.json -------------------------------------------------------------------------------- /projects/stage4/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage4/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/stage5/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/.eslintrc.json -------------------------------------------------------------------------------- /projects/stage5/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress.config.ts -------------------------------------------------------------------------------- /projects/stage5/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/stage5/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/stage5/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/stage5/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/stage5/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/stage5/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/stage5/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/stage5/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/karma.conf.js -------------------------------------------------------------------------------- /projects/stage5/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/current-weather/current-weather.component.css -------------------------------------------------------------------------------- /projects/stage5/src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /projects/stage5/src/app/current-weather/current-weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/current-weather/current-weather.component.spec.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/interfaces.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/weather/weather.service.fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/weather/weather.service.fake.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/stage5/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/stage5/src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /projects/stage5/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/stage5/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/stage5/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/favicon.ico -------------------------------------------------------------------------------- /projects/stage5/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/index.html -------------------------------------------------------------------------------- /projects/stage5/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/main.ts -------------------------------------------------------------------------------- /projects/stage5/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/src/styles.scss -------------------------------------------------------------------------------- /projects/stage5/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/tsconfig.app.json -------------------------------------------------------------------------------- /projects/stage5/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage5/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/stage6/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/.eslintrc.json -------------------------------------------------------------------------------- /projects/stage6/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress.config.ts -------------------------------------------------------------------------------- /projects/stage6/cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /projects/stage6/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/fixtures/example.json -------------------------------------------------------------------------------- /projects/stage6/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/support/commands.ts -------------------------------------------------------------------------------- /projects/stage6/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/support/component-index.html -------------------------------------------------------------------------------- /projects/stage6/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/support/component.ts -------------------------------------------------------------------------------- /projects/stage6/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/support/e2e.ts -------------------------------------------------------------------------------- /projects/stage6/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/cypress/tsconfig.json -------------------------------------------------------------------------------- /projects/stage6/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/karma.conf.js -------------------------------------------------------------------------------- /projects/stage6/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/app.config.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.html -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.spec.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/city-search-tpldriven/city-search-tpldriven.component.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search/city-search.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search/city-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/city-search/city-search.component.html -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search/city-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/city-search/city-search.component.spec.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/city-search/city-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/city-search/city-search.component.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/current-weather/current-weather.component.css -------------------------------------------------------------------------------- /projects/stage6/src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /projects/stage6/src/app/current-weather/current-weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/current-weather/current-weather.component.spec.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/interfaces.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/postal-code/postal-code.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/postal-code/postal-code.service.spec.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/postal-code/postal-code.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/postal-code/postal-code.service.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/weather/weather.service.fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/weather/weather.service.fake.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /projects/stage6/src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /projects/stage6/src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /projects/stage6/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /projects/stage6/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/stage6/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/favicon.ico -------------------------------------------------------------------------------- /projects/stage6/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/index.html -------------------------------------------------------------------------------- /projects/stage6/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/main.ts -------------------------------------------------------------------------------- /projects/stage6/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/src/styles.scss -------------------------------------------------------------------------------- /projects/stage6/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/tsconfig.app.json -------------------------------------------------------------------------------- /projects/stage6/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/projects/stage6/tsconfig.spec.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/app/actions/search.actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/actions/search.actions.spec.ts -------------------------------------------------------------------------------- /src/app/actions/search.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/actions/search.actions.ts -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/city-search/city-search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/city-search/city-search.component.css -------------------------------------------------------------------------------- /src/app/city-search/city-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/city-search/city-search.component.html -------------------------------------------------------------------------------- /src/app/city-search/city-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/city-search/city-search.component.spec.ts -------------------------------------------------------------------------------- /src/app/city-search/city-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/city-search/city-search.component.ts -------------------------------------------------------------------------------- /src/app/current-weather/current-weather.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/current-weather/current-weather.component.css -------------------------------------------------------------------------------- /src/app/current-weather/current-weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/current-weather/current-weather.component.html -------------------------------------------------------------------------------- /src/app/current-weather/current-weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/current-weather/current-weather.component.spec.ts -------------------------------------------------------------------------------- /src/app/current-weather/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/current-weather/current-weather.component.ts -------------------------------------------------------------------------------- /src/app/effects/current-weather.effects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/effects/current-weather.effects.spec.ts -------------------------------------------------------------------------------- /src/app/effects/current-weather.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/effects/current-weather.effects.ts -------------------------------------------------------------------------------- /src/app/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/interfaces.ts -------------------------------------------------------------------------------- /src/app/postal-code/postal-code.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/postal-code/postal-code.service.spec.ts -------------------------------------------------------------------------------- /src/app/postal-code/postal-code.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/postal-code/postal-code.service.ts -------------------------------------------------------------------------------- /src/app/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/reducers/index.ts -------------------------------------------------------------------------------- /src/app/reducers/search.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/reducers/search.reducer.spec.ts -------------------------------------------------------------------------------- /src/app/reducers/search.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/reducers/search.reducer.ts -------------------------------------------------------------------------------- /src/app/store/weather.store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/store/weather.store.spec.ts -------------------------------------------------------------------------------- /src/app/store/weather.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/store/weather.store.ts -------------------------------------------------------------------------------- /src/app/weather/weather.service.fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/weather/weather.service.fake.ts -------------------------------------------------------------------------------- /src/app/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /src/app/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/app/weather/weather.service.ts -------------------------------------------------------------------------------- /src/assets/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/assets/img/sunny.svg -------------------------------------------------------------------------------- /src/assets/styles/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/assets/styles/spinner.css -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duluca/local-weather-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------