Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
// The list of which env maps to which file can be found in `.angular-cli.json`.
export const environment = {
production: false,
ehrServices: {
details: 'assets/mocks/<patientID>/patient-detail.json',
allergies: 'assets/mocks/<patientID>/patient-allergies.json',
appointments: 'assets/mocks/<patientID>/patient-appointments.json',
consults: 'assets/mocks/<patientID>/patient-consults.json',
observations: 'assets/mocks/<patientID>/patient-observations.json',
progressNotes: 'assets/mocks/<patientID>/patient-progress-notes.json',
immunizations: 'assets/mocks/<patientID>/patient-immunizations.json',
problemList: 'assets/mocks/<patientID>/patient-problem-list.json'
},
sessionServices: {
userProfiles: 'assets/mocks/identities.json',
appInfo: 'assets/dat/appInfo.json',
appVersion: require('../../package.json').version,
appEnv: 'development'
}
};