├── .editorconfig ├── .gitignore ├── api ├── .gitignore ├── app.js ├── bin │ └── www ├── config.js ├── package-lock.json ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── routes │ ├── index.js │ └── users.js └── views │ ├── error.jade │ ├── index.jade │ └── layout.jade └── app ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── Appointment.ts │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── appointment-list │ │ ├── appointment-list.component.css │ │ ├── appointment-list.component.html │ │ ├── appointment-list.component.spec.ts │ │ └── appointment-list.component.ts │ ├── appointment.service.spec.ts │ ├── appointment.service.ts │ ├── appointment │ │ ├── appointment.component.css │ │ ├── appointment.component.html │ │ ├── appointment.component.spec.ts │ │ └── appointment.component.ts │ └── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/.gitignore -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /api/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/app.js -------------------------------------------------------------------------------- /api/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/bin/www -------------------------------------------------------------------------------- /api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/config.js -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/package.json -------------------------------------------------------------------------------- /api/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/public/stylesheets/style.css -------------------------------------------------------------------------------- /api/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/routes/index.js -------------------------------------------------------------------------------- /api/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/routes/users.js -------------------------------------------------------------------------------- /api/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/views/error.jade -------------------------------------------------------------------------------- /api/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/views/index.jade -------------------------------------------------------------------------------- /api/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/api/views/layout.jade -------------------------------------------------------------------------------- /app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/.editorconfig -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/README.md -------------------------------------------------------------------------------- /app/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/angular.json -------------------------------------------------------------------------------- /app/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/browserslist -------------------------------------------------------------------------------- /app/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/e2e/protractor.conf.js -------------------------------------------------------------------------------- /app/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /app/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/e2e/src/app.po.ts -------------------------------------------------------------------------------- /app/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/e2e/tsconfig.json -------------------------------------------------------------------------------- /app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/karma.conf.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/app/Appointment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/Appointment.ts -------------------------------------------------------------------------------- /app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /app/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/app.component.css -------------------------------------------------------------------------------- /app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/app.component.html -------------------------------------------------------------------------------- /app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/app.component.ts -------------------------------------------------------------------------------- /app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/app.module.ts -------------------------------------------------------------------------------- /app/src/app/appointment-list/appointment-list.component.css: -------------------------------------------------------------------------------- 1 | table { 2 | margin-top: 50px; 3 | width: 100%; 4 | } -------------------------------------------------------------------------------- /app/src/app/appointment-list/appointment-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment-list/appointment-list.component.html -------------------------------------------------------------------------------- /app/src/app/appointment-list/appointment-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment-list/appointment-list.component.spec.ts -------------------------------------------------------------------------------- /app/src/app/appointment-list/appointment-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment-list/appointment-list.component.ts -------------------------------------------------------------------------------- /app/src/app/appointment.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment.service.spec.ts -------------------------------------------------------------------------------- /app/src/app/appointment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment.service.ts -------------------------------------------------------------------------------- /app/src/app/appointment/appointment.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment/appointment.component.css -------------------------------------------------------------------------------- /app/src/app/appointment/appointment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment/appointment.component.html -------------------------------------------------------------------------------- /app/src/app/appointment/appointment.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment/appointment.component.spec.ts -------------------------------------------------------------------------------- /app/src/app/appointment/appointment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/appointment/appointment.component.ts -------------------------------------------------------------------------------- /app/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/home/home.component.html -------------------------------------------------------------------------------- /app/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /app/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/app/home/home.component.ts -------------------------------------------------------------------------------- /app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/environments/environment.ts -------------------------------------------------------------------------------- /app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/favicon.ico -------------------------------------------------------------------------------- /app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/index.html -------------------------------------------------------------------------------- /app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/main.ts -------------------------------------------------------------------------------- /app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/polyfills.ts -------------------------------------------------------------------------------- /app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/styles.css -------------------------------------------------------------------------------- /app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/src/test.ts -------------------------------------------------------------------------------- /app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/tsconfig.app.json -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/tsconfig.spec.json -------------------------------------------------------------------------------- /app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebubb/appointment-booking/HEAD/app/tslint.json --------------------------------------------------------------------------------