Run the workflow machine and generate a default configuration if the workflow is not configured.
(self, line)
| 866 | print(json.dumps(status, indent=4)) |
| 867 | |
| 868 | def do_run(self, line): |
| 869 | """Run the workflow machine and generate a default configuration if the workflow is not configured.""" |
| 870 | status = self.machine.run() |
| 871 | print(json.dumps(status, indent=4)) |
| 872 | |
| 873 | def do_halt(self, line): |
| 874 | """Halt the workflow machine.""" |