Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create an account on https://github.com/
  2. Create a remote fork of https://github.com/Taskana/TaskanaAdapter

    Info
    titleFork A Repo (Github Help)

    see https://help.github.com/articles/fork-a-repo/


  3. Configure git to automatically adjust line endings with each commit (optional, but recommended)

    Code Block
    languagebash
    git config --global core.autocrlf input


  4. Create a local clone

    Code Block
    languagebash
    # using https
    git clone https://github.com/<yourname>/TaskanaAdapter.git
    # using ssh
    git clone git@github.com:<yourname>/TaskanaAdapter.git


  5. Confiure git to automatically validate your commit messages (more information: Contribution Guide)

    Code Block
    languagebash
    cd TaskanaAdapter
    git config core.hooksPath qa/hooks
    1. Optional: Create a symlink to .git/hooks in order to support external tools

      Code Block
      rm -rf .git/hooks
      ln -s $PWD/qa/hooks .git/hooks


  6. Create a remote for the upstream project so that it is later easier to retrieve changes from the main repository.

    Code Block
    languagebash
    # using https
    git remote add upstream https://github.com/Taskana/TaskanaAdapter.git
    # using ssh
    git remote add upstream git@github.com:Taskana/TaskanaAdapter.git


Build the Application(s)

Info

Requirements: Java 11, Maven


Info

We use maven wrapper. For windows please use mvnw.cmd instead of the bash script

Full build

Code Block
languagebash
./mvnw clean install

Start the application(s)

Info

Requirements:  Java 11, Maven, Node 14.16.0

TASKANAAdapterCamundaSpringBootExample

Code Block
languagebash
./mvnw spring-boot:run -pl :taskana-adapter-camunda-spring-boot-example

CamundaOutboxExample

Code Block
languagebash
./mvnw spring-boot:run -pl :camunda-outbox-example-boot

TASKANA

Check out and build TASKANA


You should now be able to create tasksin Camunda (https://localhost:8081/example-context-root) and subsequently see and complete the created task in TASKANA (https://localhost:8080/taskana | https://localhost:4200).