slight update to the readme for hte command line junk I'm adding.

This commit is contained in:
Dan Funk 2019-11-25 16:08:41 -05:00
parent 630ee90b6b
commit 984e415f2d
1 changed files with 14 additions and 0 deletions

View File

@ -47,6 +47,20 @@ The Swagger based view of the API will be avialable at http://0.0.0.0:5000/v1.0/
This app includes a command line interface that will read in BPMN files and let you
play with it at the command line. To run it right click on app/command_line/joke.py and
click run. Type "?" to get a list of commands.
So far the joke system will work a little, when you file it up try these commands
in this order:
```bash
> engine (this will run all tasks up to first user task and should print a joke)
> answer clock (this is the correct answer)
> next (this completes the user task)
> engine (this runs the rest of the tasks, and should tell you that you got the question right)
```
You can try re-running this and getting the question wrong.
You might open up the Joke bpmn diagram so you can see what this looks like to
draw out.
### Additional Reading