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
Copy file name to clipboardExpand all lines: docs/content/labs/helloworld.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ To create a new app, open the Flogo Web UI and from there, click "_New_" to crea
50
50
51
51
In Flogo, a flow is an implementation of an action and is the primary tool to implement business logic. A flow can consist of a number of different constructs:
52
52
53
-
***Activties**: One or more activities that implement specific logic (for example write to a database, invoke a REST endpoint, etc)
53
+
***Activities**: One or more activities that implement specific logic (for example write to a database, invoke a REST endpoint, etc)
54
54
***Links**: Each activity is connected via a link (_Links can contain conditional logic to alter the path of a flow_)
55
55
56
56
Flows, as previously stated in the triggers section, can exist without a trigger. Thus, flows operate very similar to functions, that is, a single flow can define its own input & output parameters. Thus, enabling a flow to be reused regardless of the trigger entrypoint To create a new flow you can click either the `+ New Flow` button at the top or the `Create a flow` button in the middle of the screen.
@@ -102,7 +102,7 @@ The URL on which our microservice will listen will be `http://localhost:9233/tes
102
102
103
103
## Step 5: Adding activities
104
104
105
-
An activity is the unit of work that can be leveraged within a Flow. An activity can be any number of things and can be compared to a simple function in Go or any other procedural language, that is, an activity accepts input params and will return one or more objects on return, both input & output params are defined by the activity metadata. You’ll have to add some acvitivities to the flow for it to do something. To add an activity click on the large `+` sign
105
+
An activity is the unit of work that can be leveraged within a Flow. An activity can be any number of things and can be compared to a simple function in Go or any other procedural language, that is, an activity accepts input params and will return one or more objects on return, both input & output params are defined by the activity metadata. You’ll have to add some activities to the flow for it to do something. To add an activity click on the large `+` sign
106
106
107
107

108
108
@@ -126,4 +126,4 @@ Project Flogo can build binaries for most platforms that exist. If you choose to
126
126
127
127
## Step 8: Run your app
128
128
129
-
To run the app double-click it (on Windows), or open a terminal and execute the downloaded binary. As you'll do that, you'll not only see the output of the log step, but you'll see the same in your browser window as well. The URL on which our microservice will listen should be `http://localhost:9233/test/:name` (or might be different if you made changes in the previous steps). If you're running it on your machine you can open a browser window and go to `http://localhost:9233/test/flogo` to see what the output was (spoiler alert: you'll see `"Hello flogo"` in your web browser). To stop your app simply close the terminal window in which you started the app or press **ctrl + c**
129
+
To run the app double-click it (on Windows), or open a terminal and execute the downloaded binary. As you'll do that, you'll not only see the output of the log step, but you'll see the same in your browser window as well. The URL on which our microservice will listen should be `http://localhost:9233/test/:name` (or might be different if you made changes in the previous steps). If you're running it on your machine you can open a browser window and go to `http://localhost:9233/test/flogo` to see what the output was (spoiler alert: you'll see `"Hello flogo"` in your web browser). To stop your app simply close the terminal window in which you started the app or press **ctrl + c**
Copy file name to clipboardExpand all lines: docs/content/labs/pubnub.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ After that, click on "_Map to flow inputs_" to map the message from PubNub to th
49
49
50
50
## Step 5: Adding activities
51
51
52
-
You’ll have to add some acvitivities to the flow for it to do something. In this demo you'll add two activities to the flow. The first activity will log the message and the second one will store the data in a file. To add an activity click on the other large `+` sign
52
+
You’ll have to add some activities to the flow for it to do something. In this demo you'll add two activities to the flow. The first activity will log the message and the second one will store the data in a file. To add an activity click on the other large `+` sign
Copy file name to clipboardExpand all lines: docs/content/labs/timers.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Click "_save_" to make sure everything is, well…, saved. You can click the lit
36
36
37
37
## Step 3: Add activities
38
38
39
-
An activity is the unit of work that can be leveraged within a Flow. An activity can be any number of things and can be compared to a simple function in Go or any other procedural language, that is, an activity accepts input params and will return one or more objects on return, both input & output params are defined by the activity metadata. You’ll have to add some acvitivities to the flow for it to do something. To add an activity click on the large `+` sign
39
+
An activity is the unit of work that can be leveraged within a Flow. An activity can be any number of things and can be compared to a simple function in Go or any other procedural language, that is, an activity accepts input params and will return one or more objects on return, both input & output params are defined by the activity metadata. You’ll have to add some activities to the flow for it to do something. To add an activity click on the large `+` sign
0 commit comments