├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md └── data-files ├── assets ├── Downtown.png ├── Stand.png ├── Tacos.png └── VirtualTacoStand.png ├── basic-routing ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── character-factions.js ├── daily-specials.js ├── error-handling-demo ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── component-level-error-handling │ │ │ ├── component-level-error-handling.component.spec.ts │ │ │ └── component-level-error-handling.component.ts │ │ ├── component-logger-error-handling │ │ │ ├── component-logger-error-handling.component.spec.ts │ │ │ └── component-logger-error-handling.component.ts │ │ ├── component-to-test-global-error-handler │ │ │ ├── component-to-test-global-error-handler.component.spec.ts │ │ │ └── component-to-test-global-error-handler.component.ts │ │ ├── global-error-handler.service.spec.ts │ │ ├── global-error-handler.service.ts │ │ ├── logger.service.spec.ts │ │ └── logger.service.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── portfolio ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── rpg-character-builder ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── unit-testing-demo ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json └── virtual-taco-stand ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── public └── favicon.ico ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.ts │ └── app.routes.ts ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/README.md -------------------------------------------------------------------------------- /data-files/assets/Downtown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/assets/Downtown.png -------------------------------------------------------------------------------- /data-files/assets/Stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/assets/Stand.png -------------------------------------------------------------------------------- /data-files/assets/Tacos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/assets/Tacos.png -------------------------------------------------------------------------------- /data-files/assets/VirtualTacoStand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/assets/VirtualTacoStand.png -------------------------------------------------------------------------------- /data-files/basic-routing/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/.editorconfig -------------------------------------------------------------------------------- /data-files/basic-routing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/.gitignore -------------------------------------------------------------------------------- /data-files/basic-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/README.md -------------------------------------------------------------------------------- /data-files/basic-routing/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/angular.json -------------------------------------------------------------------------------- /data-files/basic-routing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/package-lock.json -------------------------------------------------------------------------------- /data-files/basic-routing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/package.json -------------------------------------------------------------------------------- /data-files/basic-routing/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/public/favicon.ico -------------------------------------------------------------------------------- /data-files/basic-routing/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-files/basic-routing/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/app/app.component.html -------------------------------------------------------------------------------- /data-files/basic-routing/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-files/basic-routing/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/app/app.component.ts -------------------------------------------------------------------------------- /data-files/basic-routing/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/app/app.config.ts -------------------------------------------------------------------------------- /data-files/basic-routing/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/app/app.routes.ts -------------------------------------------------------------------------------- /data-files/basic-routing/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/index.html -------------------------------------------------------------------------------- /data-files/basic-routing/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/main.ts -------------------------------------------------------------------------------- /data-files/basic-routing/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/src/styles.css -------------------------------------------------------------------------------- /data-files/basic-routing/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/tsconfig.app.json -------------------------------------------------------------------------------- /data-files/basic-routing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/tsconfig.json -------------------------------------------------------------------------------- /data-files/basic-routing/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/basic-routing/tsconfig.spec.json -------------------------------------------------------------------------------- /data-files/character-factions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/character-factions.js -------------------------------------------------------------------------------- /data-files/daily-specials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/daily-specials.js -------------------------------------------------------------------------------- /data-files/error-handling-demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/.editorconfig -------------------------------------------------------------------------------- /data-files/error-handling-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/.gitignore -------------------------------------------------------------------------------- /data-files/error-handling-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/README.md -------------------------------------------------------------------------------- /data-files/error-handling-demo/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/angular.json -------------------------------------------------------------------------------- /data-files/error-handling-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/package-lock.json -------------------------------------------------------------------------------- /data-files/error-handling-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/package.json -------------------------------------------------------------------------------- /data-files/error-handling-demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/public/favicon.ico -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/app.component.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/app.config.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/app.routes.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/component-level-error-handling/component-level-error-handling.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/component-level-error-handling/component-level-error-handling.component.spec.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/component-level-error-handling/component-level-error-handling.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/component-level-error-handling/component-level-error-handling.component.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/component-logger-error-handling/component-logger-error-handling.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/component-logger-error-handling/component-logger-error-handling.component.spec.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/component-logger-error-handling/component-logger-error-handling.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/component-logger-error-handling/component-logger-error-handling.component.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/component-to-test-global-error-handler/component-to-test-global-error-handler.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/component-to-test-global-error-handler/component-to-test-global-error-handler.component.spec.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/component-to-test-global-error-handler/component-to-test-global-error-handler.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/component-to-test-global-error-handler/component-to-test-global-error-handler.component.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/global-error-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/global-error-handler.service.spec.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/global-error-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/global-error-handler.service.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/logger.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/logger.service.spec.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/app/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/app/logger.service.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/index.html -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/main.ts -------------------------------------------------------------------------------- /data-files/error-handling-demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/src/styles.css -------------------------------------------------------------------------------- /data-files/error-handling-demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/tsconfig.app.json -------------------------------------------------------------------------------- /data-files/error-handling-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/tsconfig.json -------------------------------------------------------------------------------- /data-files/error-handling-demo/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/error-handling-demo/tsconfig.spec.json -------------------------------------------------------------------------------- /data-files/portfolio/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/.editorconfig -------------------------------------------------------------------------------- /data-files/portfolio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/.gitignore -------------------------------------------------------------------------------- /data-files/portfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/README.md -------------------------------------------------------------------------------- /data-files/portfolio/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/angular.json -------------------------------------------------------------------------------- /data-files/portfolio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/package-lock.json -------------------------------------------------------------------------------- /data-files/portfolio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/package.json -------------------------------------------------------------------------------- /data-files/portfolio/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/public/favicon.ico -------------------------------------------------------------------------------- /data-files/portfolio/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-files/portfolio/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/app/app.component.html -------------------------------------------------------------------------------- /data-files/portfolio/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-files/portfolio/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/app/app.component.ts -------------------------------------------------------------------------------- /data-files/portfolio/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/app/app.config.ts -------------------------------------------------------------------------------- /data-files/portfolio/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/app/app.routes.ts -------------------------------------------------------------------------------- /data-files/portfolio/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/index.html -------------------------------------------------------------------------------- /data-files/portfolio/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/main.ts -------------------------------------------------------------------------------- /data-files/portfolio/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/src/styles.css -------------------------------------------------------------------------------- /data-files/portfolio/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/tsconfig.app.json -------------------------------------------------------------------------------- /data-files/portfolio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/tsconfig.json -------------------------------------------------------------------------------- /data-files/portfolio/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/portfolio/tsconfig.spec.json -------------------------------------------------------------------------------- /data-files/rpg-character-builder/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/.editorconfig -------------------------------------------------------------------------------- /data-files/rpg-character-builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/.gitignore -------------------------------------------------------------------------------- /data-files/rpg-character-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/README.md -------------------------------------------------------------------------------- /data-files/rpg-character-builder/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/angular.json -------------------------------------------------------------------------------- /data-files/rpg-character-builder/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/karma.conf.js -------------------------------------------------------------------------------- /data-files/rpg-character-builder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/package-lock.json -------------------------------------------------------------------------------- /data-files/rpg-character-builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/package.json -------------------------------------------------------------------------------- /data-files/rpg-character-builder/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/public/favicon.ico -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/app/app.component.html -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/app/app.component.ts -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/app/app.config.ts -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/app/app.routes.ts -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/index.html -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/main.ts -------------------------------------------------------------------------------- /data-files/rpg-character-builder/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/src/styles.css -------------------------------------------------------------------------------- /data-files/rpg-character-builder/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/tsconfig.app.json -------------------------------------------------------------------------------- /data-files/rpg-character-builder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/tsconfig.json -------------------------------------------------------------------------------- /data-files/rpg-character-builder/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/rpg-character-builder/tsconfig.spec.json -------------------------------------------------------------------------------- /data-files/unit-testing-demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/.editorconfig -------------------------------------------------------------------------------- /data-files/unit-testing-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/.gitignore -------------------------------------------------------------------------------- /data-files/unit-testing-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/README.md -------------------------------------------------------------------------------- /data-files/unit-testing-demo/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/angular.json -------------------------------------------------------------------------------- /data-files/unit-testing-demo/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/karma.conf.js -------------------------------------------------------------------------------- /data-files/unit-testing-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/package-lock.json -------------------------------------------------------------------------------- /data-files/unit-testing-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/package.json -------------------------------------------------------------------------------- /data-files/unit-testing-demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/public/favicon.ico -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/app/app.component.ts -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/app/app.config.ts -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/app/app.routes.ts -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/index.html -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/main.ts -------------------------------------------------------------------------------- /data-files/unit-testing-demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/src/styles.css -------------------------------------------------------------------------------- /data-files/unit-testing-demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/tsconfig.app.json -------------------------------------------------------------------------------- /data-files/unit-testing-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/tsconfig.json -------------------------------------------------------------------------------- /data-files/unit-testing-demo/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/unit-testing-demo/tsconfig.spec.json -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/.editorconfig -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/.gitignore -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/README.md -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/angular.json -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/karma.conf.js -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/package-lock.json -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/package.json -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/public/favicon.ico -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/app/app.component.html -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/app/app.component.ts -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/app/app.config.ts -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/app/app.routes.ts -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/index.html -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/main.ts -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/src/styles.css -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/tsconfig.app.json -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/tsconfig.json -------------------------------------------------------------------------------- /data-files/virtual-taco-stand/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buwebdev/web-425/HEAD/data-files/virtual-taco-stand/tsconfig.spec.json --------------------------------------------------------------------------------