Cockpit and Embedded engine

Hi! Recently I’ve finally figured out how to embed camunda engine and rest into SpringBoot app. Having these dependencies I can run the server and call the REST API. My question is:

  • where can I find wars/jars of Admin, Cockpit and Tasklist
  • how am I able to connect my app with Admin, Cockpit and Tasklist webapps

Hi @Renata_Akhmetshakiro,

you only have to add the camunda-bpm-spring-boot-starter-webapp: https://docs.camunda.org/manual/7.10/user-guide/spring-boot-integration/webapps/

Hope this helps, Ingo

By using your solution the engine’s REST API again wasn’t available. Finally I’ve achieved it by adding two dependencies: camunda-bpm-spring-boot-starter-rest and camunda-bpm-spring-boot-starter-webapp. Thanks!