Getting Started

Checkout the bolt-bike-assignment-2-start tag in the assignments repository.

git checkout tags/bolt-bike-assignment-2-start

This will put git into 'detached HEAD' mode (it will inform you of this). If you want to create a branch from here to save your work, git will tell you to do the following.

$ git switch -c <your-branch-name>

This way, you have a branch based on the tag you started with and you can create commits on your branch to save your work and still be able to jump through the history.

If you want to combine the two in a single action, execute the following command.

git checkout tags/bolt-bike-assignment-2-start && git switch -c my-work-from-bolt-bike-assignment-2-start

You’ll find the inventory-level.dmn model from the previous assignment for reference in the repository. There is also a start for a new decision model, order-amount.dmn. Open it up in Camunda Modeler by using Ctrl+O or File  Open File…​. We’ll be working on this model for the following assignments.