You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 9, 2020. It is now read-only.
make service dependencies declarable:
{ "name": "my-step", "endpoints" : {}, "services": { "listener": { "name": "default-listener", "type": "koa" } } }my-step requires a service named listener of type koa.
In the step the service is called listener in the service-registration it is called default-listener
and the implementation is a koa.
short form local name and registration name are equal
{ "name": "my-step", "endpoints" : {}, "services": { "listener": "koa" } }The service will get an property after the service name
and the service will be started when the step get started
So that a step implementation method can write the following statement: