Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianhaas/medical-appointment-scheduling
Concept showcase for "Appointment Scheduling System for Small and Medium-Sized Medical Facilities"
https://github.com/sebastianhaas/medical-appointment-scheduling
angular appointment-scheduling concept-showcase e-health health-care heroku material-design practice-management-software scheduling web-application
Last synced: 7 days ago
JSON representation
Concept showcase for "Appointment Scheduling System for Small and Medium-Sized Medical Facilities"
- Host: GitHub
- URL: https://github.com/sebastianhaas/medical-appointment-scheduling
- Owner: sebastianhaas
- License: mit
- Created: 2016-03-14T14:18:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-02T00:37:13.000Z (over 4 years ago)
- Last Synced: 2025-01-10T01:11:22.555Z (14 days ago)
- Topics: angular, appointment-scheduling, concept-showcase, e-health, health-care, heroku, material-design, practice-management-software, scheduling, web-application
- Language: TypeScript
- Homepage:
- Size: 4.63 MB
- Stars: 144
- Watchers: 9
- Forks: 86
- Open Issues: 113
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Medical Appointment Scheduling
[![Greenkeeper badge](https://badges.greenkeeper.io/sebastianhaas/medical-appointment-scheduling.svg)](https://greenkeeper.io/)
[![Build Status](https://travis-ci.org/sebastianhaas/medical-appointment-scheduling.svg?branch=master)](https://travis-ci.org/sebastianhaas/medical-appointment-scheduling)
[![Dependency Status](https://david-dm.org/sebastianhaas/medical-appointment-scheduling.svg)](https://david-dm.org/sebastianhaas/medical-appointment-scheduling)
[![Join the chat at https://gitter.im/sebastianhaas/medical-appointment-scheduling](https://badges.gitter.im/sebastianhaas/medical-appointment-scheduling.svg)](https://gitter.im/sebastianhaas/medical-appointment-scheduling?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)Concept showcase for "Design of a Web-Based Appointment Scheduling System for Small and Medium-Sized Medical Facilities".
## Live showcase
An up-to-date snapshot of this repository is always available on [Heroku](https://scheduling-client.herokuapp.com).
> Due to the limitations of Heroku's free dynos and database service, it might take a while for the application to load initially. Also, there is a 10k row limit for free databases. Sometimes you might have to wipe test data other users created before being able to add new content. Test data can be inserted and deleted using the app-bar menu in the upper right corner.## How to deploy
This application can be easily deployed to Heroku. tbd## How to run locally
After checkout, run:
```
$ npm install
$ npm start
```
This requires node >=4 together with npm to be installed. This repository doesn't contain any backend, you need to have an instance of [medical-appointment-scheduling-server](https://github.com/sebastianhaas/medical-appointment-scheduling-server) running.## Internationalization
Prepared for internationalization. The application is currently available in English and German. Translations are managed on POEditor.com in a [publicly available project](https://poeditor.com/projects/view?id=102821). The locale will be determined based on the user's browser settings and persisted to local storage. The logic can be found [here](https://github.com/sebastianhaas/medical-appointment-scheduling/blob/master/src/app/i18n-providers.ts#L47).## Tests
Both unit and end-to-end tests do exist for most parts of the application.### Unit tests
```
$ npm run test
```### End-to-end tests
Make sure you have a running instance in another terminal before running end-to-end tests.
```
$ npm run e2e
```## Code style
Code quality is ensured by `tslint` with `codelyzer` for Angular 2 specific linting.## Technology stack
### Core technologies
* [Angular 2](https://angular.io/)
* [Angular Material](https://material.angular.io/)
* [SASS](http://sass-lang.com/)### Bundling and packaging
* [webpack](https://webpack.github.io/)
* [npm](http://npmjs.com/)### Testing
* [Karma](https://karma-runner.github.io/1.0/index.html)
* [Jasmine](http://jasmine.github.io/)
* [Protractor](http://www.protractortest.org/)
* [Selenium](http://docs.seleniumhq.org/)### Code style
* [codelyzer](https://github.com/mgechev/codelyzer)
* [tslint](https://palantir.github.io/tslint/)### Documentation
* [Typedoc](https://github.com/TypeStrong/typedoc)### Internationalization
* [Angular 2's `ng-xi18n` tool](https://angular.io/docs/ts/latest/cookbook/i18n.html#!#ng-xi18n)
* [POEditor](https://poeditor.com/)## License
[MIT](/LICENSE)