Skip to content

Latest commit

 

History

History
74 lines (40 loc) · 1.64 KB

File metadata and controls

74 lines (40 loc) · 1.64 KB

ApiFlows Tasks

TOC | NEXT GUIDE

Create a flow in sdk mode

Prerequisites : Setup

  • prepare a json file /path_to_json_file/myFlow.json with the following content :
{
      flowId: myFlow
      mode: sdk
}

flowId is of type string : It's the Id of the flow you want to create

mode is of type string and must be "sdk" to start the flow in sdk mode

  • Request the creation of the flow MyFlow
> apiflows flow create --file /path_to_json_file/myFlow.yaml
  • Connect to the flow visual editor

Wait for around 1 minute after flow creation request. ApiFlows SaaS created a NodeRED instance for you in the cloud. You can access its visual editor at the following address : http://

Back to top

Modify a flow in sdk mode

Back to top

Create shared contexts

Back to top

Inject shared contexts

Back to top

Modify Shared contexts

Back to top

Create and modify grafana Dashboard

Back to top

Switch to production mode

Back to top

TOC | NEXT GUIDE