Simple demo app which uses annotorious to annotate images which are stored to a git repo using Miiify. Some examples use the GitHub CLI to show how to fork a repo and create a pull request from the command line but this can also be easily achieved from the GitHub web interface.
gh repo clone https://github.com/jptmoore/miiifyapp.git
cd miiifyapp
gh repo fork --clone https://github.com/jptmoore/annotations.git db
npm install
npm run backend
npm run serve
Visit http://localhost:8080/ and annotate the image by drawing a rectangle with your mouse.
The db directory is the forked annotations repo which you can issue a Pull Request (PR) to share your contributions.
Change into the db repo and push your changes back to your remote.
cd db
git push origin master
Create a PR from your changes. You can use the defaults when prompted.
gh pr create
Make sure you are in the directory where the repo is and clean any unstaged changes that might have been generated.
cd db
git reset HEAD --hard
Pull in the any changes from the upstream annotations repository.
git pull upstream master