Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 1.02 KB

readme.md

File metadata and controls

19 lines (12 loc) · 1.02 KB

JonathanGiles.net

This GitHub repository contains the files used to generate JonathanGiles.net. It is a collection of pages, posts, templates, and static content such as images, css, JavaScript, and so on, that when passed through the Site Builder template tool will generate a completely static website.

This GitHub repository is configured so that every time a commit is made to the repository a GitHub Action is executed that will re-run the Site Builder tool, generate an entirely new version of the website, and then push it up into Azure Blob Storage where it is hosted behind an Azure CDN.

Building

To build a static output of the site, run the following command:

mvn clean package exec:java

To build the files and then start up a local server to host them, run the following command:

mvn clean package exec:java -Dexec.args="runserver"