https://github.com/davies-k/aidbox-angular-sample
https://github.com/davies-k/aidbox-angular-sample
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davies-k/aidbox-angular-sample
- Owner: Davies-K
- Created: 2018-12-20T22:55:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-15T16:11:38.000Z (almost 7 years ago)
- Last Synced: 2025-02-11T15:34:14.516Z (8 months ago)
- Language: TypeScript
- Size: 236 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular Patient CRUD application with Aidbox
### Install backend
Visit to [Aidbox
documentation](https://docs.aidbox.app/installation/setup-aidbox.dev) for
detailed information and instruction how to install Aidbox for development### Clone repository
``` bash
$ 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
``` typescript
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://.aidbox.app.``` typescript
export const environment = {
AIDBOX_URL : "https://.aidbox.app"
}
```### Requirements
This sample application required minimal [Node JS version 8.9](https://nodejs.org/en/)
### Installation and start
``` bash
$ npm install
$ npm install -g @angular/cli
$ ng serve```
Open in browser [http://localhost:4200](http://localhost:4200)
