Web visualisation available at: akodiat.github.io/shipAhoy/.
To run locally, start a static webserver in this directory. If you have python 3, you can type:
python3 -m http.server 8000A full list of oneliners is available here: https://github.com/imgarylai/awesome-webservers
Maintain a linear history on the main branch; rebase rather than merging:
git pull --rebaseSmaller changes can be pushed directly to main, but larger features that involves other developers should have their separate feature branch and a pull request.
git checkout -b new-feature
git add <some-file>
git commit
git push -u origin new-feature