Skip to content

Latest commit

 

History

History
88 lines (57 loc) · 1.64 KB

README.md

File metadata and controls

88 lines (57 loc) · 1.64 KB

MyHealthPlus

A web application that allows patients to register and set checkup appointments; admin to manage the appointments, and doctors to complete the appointments.

Capture

Project structure

MyHealthPlus.Core/           Framework related codes
MyHealthPlus.Data/           Domain Models and Persistent services
MyHealthPlus.Web/            Application services and User Interface
|- ClientApp/                User Interface (Angular)
|+ ...

Getting Started

Installation

  1. Clone the repository
git clone https://github.com/rpmansion/MyHealthPlus.git
  1. Data Migrations
  • Create Initial Migration
Add-Migration InitialAppDbContextMigration -c AppDbContext
  • Update Database
Update-Database -Context AppDbContext
  1. Install NPM packages
npm install

Test Credentials

Patients

username: [email protected]
password: Pass123$

username: [email protected]
password: Pass123$

Staff

username: [email protected]
password: Pass123$

Doctor

username: [email protected]
password: Pass123$

Build with: