--- /dev/null
+Run ```./camunda.py``` to just deploy the process.
+
+Flags:
+
+```--autoclick 1```: will deploy the process and run it with three terms.
+Result should be available in Camunda Tasklist -> All Tasks
+
+```--no-deploy```: do not deploy the process, probably only useful with the autoclick-flag
+
+```--no-cleanup```: do not remove old deployments, keep tasks running (might be confusing if there are multiple deployments)
+
+Default login:
+
+URI: http://localhost:8080/camunda/
+User: demo
+Pass: demo
if __name__ == "__main__":
parser = argparse.ArgumentParser()
- parser.add_argument('--deploy', dest='deploy', default=True, action='store_false', help="Do deployment step")
+ parser.add_argument('--no-deploy', dest='deploy', default=True, action='store_false', help="Do not run the deployment step")
parser.add_argument('--no-cleanup', dest='cleanup', default=True, action='store_false', help="Initial deploy does not need cleanup")
parser.add_argument('--autoclick', dest='autoclick', type=int, default=0, help="How many steps to autoclick")
args = parser.parse_args()