This is the template for the https://www.eventnotifications.net website.
Requirements are written in Markdown and transformed to HTML using the Bikeshed preprocessor.
To view HTML output locally (using a Docker container), run:
make spec
and open the index.html
file:
open index.html
Alternatively, to update the HTML every time you make changes to the source document:
make watch
When Docker is not available on your machine use the web
target which uses a cloud based
Bikeshed processor
make web
and open the index.html
file:
open index.html
diagrams
folderexamples
foldergit clone git@github.com:{your-git-account-name}/spec-notifications.git
pr/fixing-typos
git checkout -b pr/fixing-typos
Make your edits. Test and make sure you're happy with the result
Commit all your changes
git add newfile # if you added a new file
git commit -a # provide a description of your edits
git push -u origin pr/fixing-typos # push changes to your own repository
Sync fork
main
branchgit checkout main
git pull