giri-services
v0.1.2
Published
The backend services of the giri system
Downloads
1
Readme
giri-services
About
This application provides the backend services of the giri system.
It is a standalone application that holds the REST endpoint implementations of the giri backend services.
Installation
Run the install command:
npm install -g giri-services
Check if giri-services is properly installed:
$ giri-services --help
Options:
--version Show version number [boolean]
--config, -c The name of the configuration file [default: "config.yml"]
--logLevel, -l The log level [string] [default: "info"]
--logFormat, -t The log (`plainText` or `json`)
[string] [default: "plainText"]
--help Show help [boolean]
Configuration
General server parameters
giri-services
can be configured via:
- configuration file,
- environment variables,
- command line arguments,
- the combination of these above.
Dump the effective configuration object, before start:
- CLI parameter:
-d [true]
, or--dumpConfig [true]
.
Logging
Set the log level of the server and its internal components:
- CLI parameter:
-l <level>
, orlogLevel <level>
- Environment:
LOG_LEVEL
. - Config object property:
logger.level
. - Possible values:
info
,debug
,warn
,error
. - Default value:
info
.
Set the log format of the server and its internal components:
- CLI parameter:
-t <format>
, or--logFormat <format>
. - Environment:
LOG_FORMAT
. - Config object property:
logger.transports.console.format
. - Possible values:
plainText
,json
. - Default value:
plainText
.
PDMS (NATS) Gateway
Define the URI of the NATS server used by the pdms adapter:
- CLI parameter:
-n <nats-uri>
, or--natsUri <nats-uri>
. - Environment:
PDMS_NATS_URI
. - Config object parameter:
pdms.natsUri
. - Default value:
"nats://demo.nats.io:4222"
.
Define the NATS timeout value:
- CLI parameter: N.A.
- Environment:
PDMS_TIMEOUT
. - Config object property:
pdms.timeout
. - Default value:
2000
.
See npac-pdms-hemera-adapter for further details.
Usage
Start the application:
$ giri-services
2019-05-17T06:22:06.090Z [[email protected]] info: Start up pdmsHemera
2019-05-17T06:22:07.663Z [[email protected]] info: hemera: "Connected!"
2019-05-17T06:22:07.668Z [[email protected]] info: Hemera is connected
2019-05-17T06:22:07.670Z [[email protected]] info: Start up service adapter
2019-05-17T06:22:07.678Z [[email protected]] info: hemera: {"topic":"/systems","method":"get","uri":"/systems"}
2019-05-17T06:22:07.684Z [[email protected]] info: hemera: {"topic":"/systems","method":"post","uri":"/systems"}
2019-05-17T06:22:07.685Z [[email protected]] info: hemera: {"topic":"/systems","method":"delete","uri":"/systems"}
2019-05-17T06:22:07.688Z [[email protected]] info: App runs the jobs...
The application starts and subsribes to NATS topic. When incoming requests will be forwarded through these topics, the services will respond.
Get Help
To learn more about the functions visit the source documentation.