Angular Patient CRUD application with Aidbox

Install backend

Visit to Aidbox documentation for detailed information and instruction how to install Aidbox for development

Clone repository

 $ git clone https://github.com/HealthSamurai/aidbox-angular-sample.git
 $ cd aidbox-angular-sample

Configure Base URL

Aidbox.Dev

If you use Aidbox.Dev as a backend, you need specify AIDBOX_URL http://localhost:8888

export const environment = {
  AIDBOX_URL : "http://localhost:8888"
}

Aidbox.Coud

When you want run this sample application with Aidbox.Cloud you need specify AIDBOX_URL as https://<YOUR_BOX_NAME>.aidbox.app.

export const environment = {
  AIDBOX_URL : "https://<YOUR_BOX_NAME>.aidbox.app"
}

Requirements

This sample application required minimal Node JS version 8.9

Installation and start

 $ npm install
 $ npm install -g @angular/cli 
 $ ng serve

Open in browser http://localhost:4200

asset/img/screen.png