├── .editorconfig ├── .gitignore ├── README.md ├── TODO.md ├── angular.json ├── data ├── healthyMeData-original.json ├── healthyMeData.json └── routes.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── files ├── template.community.component.html.txt ├── template.confirm-modal.component.html.txt ├── template.entry-details.component.html.txt ├── template.login.component.html.txt ├── template.new-weight-entry.component.html.txt └── template.weight-entries.service.ts.txt ├── package.json ├── proxy.conf.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ └── app.module.ts ├── assets │ ├── .gitkeep │ ├── sb-admin.min.css │ └── sb-admin.min.js ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/TODO.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/angular.json -------------------------------------------------------------------------------- /data/healthyMeData-original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/data/healthyMeData-original.json -------------------------------------------------------------------------------- /data/healthyMeData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/data/healthyMeData.json -------------------------------------------------------------------------------- /data/routes.json: -------------------------------------------------------------------------------- 1 | { 2 | "/api/*": "/$1" 3 | } -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /files/template.community.component.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/files/template.community.component.html.txt -------------------------------------------------------------------------------- /files/template.confirm-modal.component.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/files/template.confirm-modal.component.html.txt -------------------------------------------------------------------------------- /files/template.entry-details.component.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/files/template.entry-details.component.html.txt -------------------------------------------------------------------------------- /files/template.login.component.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/files/template.login.component.html.txt -------------------------------------------------------------------------------- /files/template.new-weight-entry.component.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/files/template.new-weight-entry.component.html.txt -------------------------------------------------------------------------------- /files/template.weight-entries.service.ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/files/template.weight-entries.service.ts.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/package.json -------------------------------------------------------------------------------- /proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/proxy.conf.json -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/sb-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/assets/sb-admin.min.css -------------------------------------------------------------------------------- /src/assets/sb-admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/assets/sb-admin.min.js -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/PSAngularCrashCourse/HEAD/tslint.json --------------------------------------------------------------------------------