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: 'http://localhost:9200/int/v1/patients/<patientID>',
allergies: 'http://localhost:9200/int/v1/patients/<patientID>/allergies',
appointments: 'http://localhost:9200/int/v1/patients/<patientID>/appointments',
consults: 'http://localhost:9200/int/v1/patients/<patientID>/consults',
observations: 'http://localhost:9200/int/v1/patients/<patientID>/measurements',
progressNotes: 'http://localhost:9200/int/v1/patients/<patientID>/progress-notes',
immunizations: 'http://localhost:9200/int/v1/patients/<patientID>/immunizations',
problemList: 'http://localhost:9200/int/v1/patients/<patientID>/problem-list'
},
sessionServices: {
userProfiles: 'assets/mocks/identities.json',
appInfo: 'http://localhost:9200/info/build/details',
appVersion: require('../../package.json').version,
appEnv: 'dev/int no proxy'
}
};