@@ -1,7 +1,9 @@
# IDE specific
.idea/
.vscode/
-resources/
+
+# Hugo
+exampleSite/public/
# Jupyter
.ipynb_checkpoints/
@@ -0,0 +1,5 @@
+#!/usr/bin/env zsh
+# Generate preprocessed resources for demo site whilst also removing disused resources.
+# Run this script from the root Academic dir.
+HUGO_THEME=academic hugo --source exampleSite --themesDir ../../ --gc
@@ -1,3 +1,5 @@
#!/usr/bin/env zsh
+# View the demo site on any local devices by binding the local IP on port 1315.
HUGO_THEME=academic hugo --source exampleSite --themesDir ../../ --i18n-warnings --bind=0.0.0.0 -p 1315 --baseURL=http://0.0.0.0:1315 server