config-client
Description
This NestJS Module can be used to connect with remote-config-server to fetch environment specific configurations.
Installation
In your existing NestJS-based project:
$ npm install --save @nestutils/config-client
Usage
import { Module } from '@nestjs/common'
import { ClientConfigModule } from '@nestutils/config-client'
@Module({
imports: [
ClientConfigModule.forRootAsync({
serverUrl: 'http://************.***:****',
applicationId: **************************
}),
]
})
export class AppModule {}
Contributions
Any suggestions, issues, bug-fixes, PR's are most welcomed. Thanks.
Note
This project is currently in active development