fixing up the getting started guide, which had minor errors in it.
This commit is contained in:
parent
21fb6c31fe
commit
56e1e2652e
|
@ -66,11 +66,12 @@ Let’s build and run a very simple workflow to get familiar with the interface,
|
||||||
![add_process_model](add_process_model.png)
|
![add_process_model](add_process_model.png)
|
||||||
|
|
||||||
**Provide the following information:**
|
**Provide the following information:**
|
||||||
* Display Name: “Simple Example”
|
|
||||||
* The identifier will automatically be set to “simple-example”. We will cover other fields and options at another time.
|
1. Display Name: “Simple Example”
|
||||||
* Description: “My first SpiffWorkflow Process Model”
|
2. The identifier will automatically be set to “simple-example”. We will cover other fields and options at another time.
|
||||||
Click “Submit”
|
3. Description: “My first SpiffWorkflow Process Model”
|
||||||
Click “New BPMN File”
|
4. Click “Submit”
|
||||||
|
5. Click “New BPMN File”
|
||||||
|
|
||||||
**Welcome to the Diagram Editor!**
|
**Welcome to the Diagram Editor!**
|
||||||
|
|
||||||
|
@ -84,7 +85,8 @@ Your diagram should now look like this:
|
||||||
|
|
||||||
![diagram 1](diagram_1.png)
|
![diagram 1](diagram_1.png)
|
||||||
|
|
||||||
Now let’s turn the “Task” (the rectangle) into a Script Task, and we will add a bit of Python code to our diagram. Click the Task, to get the context menu up again. Click the wrench icon ![wrench icon](wrench.png), and select ![script task](script_task.png) “Script Task” from the list of options.
|
Now let’s turn the “Task” (the rectangle) into a Script Task, and we will add a bit of Python code to our diagram. Click the Task, to get the context menu up again. Click the wrench icon {{< inline_image src="wrench.png" alt="wrench icon" >}}, and select {{< inline_image src="script_task.png" alt="Script Task icon" >}}“Script Task” from the list of options.
|
||||||
|
|
||||||
At this point your cursor will be blinking inside of the Task icon, allowing you to enter the name of the Task. For this time we will use an alternative method, described in the next step
|
At this point your cursor will be blinking inside of the Task icon, allowing you to enter the name of the Task. For this time we will use an alternative method, described in the next step
|
||||||
Click anywhere off the Task and your diagram should now look like this:
|
Click anywhere off the Task and your diagram should now look like this:
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<img class="inline" src=" {{ .Params.src }}" alt=" {{ .Params.alt }}"/>
|
|
@ -7,6 +7,12 @@
|
||||||
display: block;
|
display: block;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content img.inline {
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.content p, .content ol, .content ul {
|
.content p, .content ol, .content ul {
|
||||||
font-size: 1.3em;
|
font-size: 1.3em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue