Getting Started
Get Set Up for the Assignment
Using git
Checkout the developer-onboarding-assignment-1-end tag in the assignments repository.
git checkout tags/developer-onboarding-assignment-1-end
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/developer-onboarding-assignment-1-end && git switch -c my-work-from-developer-onboarding-assignment-1-end
Using the Tree
Use your file explorer to go to the directory where you extracted the resources.
Now go to the subdirectory in there named developer-onboarding-assignment-1-end.
The files you need to get started are there.
You will find precisely one main file in the working tree, make-offer.bpmn.
It’s the BPMN process that will be used for this assignment.