Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/docker-compose.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ services:
- FHIR_URL=http://hearth:3447/fhir
- AUTH_URL=http://auth:4040
- APPLICATION_CONFIG_URL=http://config:2021
- CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration
- CONFIRM_REGISTRATION_URL=http://workflow:5050/records/{id}/confirm
- MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0
- CONFIG_MONGO_URL=mongodb://mongo1/application-config?replicaSet=rs0
- APN_SERVICE_URL=http://apm-server:8200
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/docker-compose.development-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- FHIR_URL=http://hearth:3447/fhir
- AUTH_URL=http://auth:4040
- APPLICATION_CONFIG_URL=http://config:2021
- CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration
- CONFIRM_REGISTRATION_URL=http://workflow:5050/records/{id}/confirm
- CHECK_INVALID_TOKEN=true
- MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0
- SENTRY_DSN=${SENTRY_DSN:-}
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/docker-compose.qa-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:
- FHIR_URL=http://hearth:3447/fhir
- AUTH_URL=http://auth:4040
- APPLICATION_CONFIG_URL=http://config:2021
- CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration
- CONFIRM_REGISTRATION_URL=http://workflow:5050/records/{id}/confirm
- CHECK_INVALID_TOKEN=true
- MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0
- SENTRY_DSN=${SENTRY_DSN:-}
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/docker-compose.staging-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ services:
- FHIR_URL=http://hearth:3447/fhir
- AUTH_URL=http://auth:4040
- APPLICATION_CONFIG_URL=http://config:2021
- CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration
- CONFIRM_REGISTRATION_URL=http://workflow:5050/records/{id}/confirm
- CHECK_INVALID_TOKEN=true
- SENTRY_DSN=${SENTRY_DSN:-}
- SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS}
Expand Down
2 changes: 1 addition & 1 deletion src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const env = cleanEnv(process.env, {
desc: 'Check if the token has been invalidated in the auth service before it has expired'
}),
CONFIRM_REGISTRATION_URL: url({
devDefault: 'http://localhost:5050/confirm/registration'
devDefault: 'http://localhost:5050/records/{id}/confirm'
}),
QA_ENV: bool({ default: false })
})
Loading