Browse Source
Relax validation for REDIS_HOST (#1652)
* Relax validation for REDIS_HOST
* Update changelog
pull/1654/head
BeauAgst
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/configuration.service.ts
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Relaxed the validation rule of the _Redis_ host environment variable (`REDIS_HOST`) |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
|
## 1.230.0 - 2023-01-29 |
|
|
## 1.230.0 - 2023-01-29 |
|
|
|
@ -42,7 +42,7 @@ export class ConfigurationService { |
|
|
MAX_ITEM_IN_CACHE: num({ default: 9999 }), |
|
|
MAX_ITEM_IN_CACHE: num({ default: 9999 }), |
|
|
PORT: port({ default: 3333 }), |
|
|
PORT: port({ default: 3333 }), |
|
|
RAPID_API_API_KEY: str({ default: '' }), |
|
|
RAPID_API_API_KEY: str({ default: '' }), |
|
|
REDIS_HOST: host({ default: 'localhost' }), |
|
|
REDIS_HOST: str({ default: 'localhost' }), |
|
|
REDIS_PASSWORD: str({ default: '' }), |
|
|
REDIS_PASSWORD: str({ default: '' }), |
|
|
REDIS_PORT: port({ default: 6379 }), |
|
|
REDIS_PORT: port({ default: 6379 }), |
|
|
ROOT_URL: str({ default: 'http://localhost:4200' }), |
|
|
ROOT_URL: str({ default: 'http://localhost:4200' }), |
|
|