You can click on the "Fork button" on the jamuluswebsite repo, make some small changes to your repository and open a pull request to jamulussoftware/jamulus. Afterwards the magic happens: GitHub builds the site and uploads the output as .zip file (which you can download at the Checks tab of the PR under Artifacts). If you unpack this zip file and copy it to the correct location on your mac (and enable apache2) you can go to safari, browse to https://localhost and get the website.
To get apache up and running:
- Open terminal
- Type
sudo apachectl start
to start the web server - Go into the website root by typing
cd /Library/WebServer/Documents
- Now copy the content of the zip file (everything under _site) into
/Library/WebServer/Documents
by typingcp -r /home/gene/Downloads/Website/website/_site/* .
while /home/gene/Downloads/Website/website/_site is the path to the_sites
folder which you downloaded from the pull request. - Open Safari and browse to http://localhost/ to get the website.