-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add KEYS_API_URL configuration #240
feat: add KEYS_API_URL configuration #240
Conversation
Lets add info about this configurations in README? |
KEYS_API_HOST = ''; | ||
|
||
@ValidateIf((conf) => { | ||
return !conf.KEYS_API_PORT && !conf.KEYS_API_HOST; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so we want to use KEYS_API_URL only if both conf.KEYS_API_PORT and conf.KEYS_API_HOST were not set, right ?
); | ||
toHaveProblemWithRecords(['KEYS_API_HOST'], validationErrors); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we also need test 'KEYS_API_URL, KEYS_API_HOST, KEYS_API_PORT are set'
lgtm, good work |
No description provided.