From 6b28240cd3cea48540244ed9e30d36eb99d8477f Mon Sep 17 00:00:00 2001 From: Johann Gyger Date: Sun, 3 Jan 2021 09:41:32 +0100 Subject: [PATCH] Prepare and push it to GitHub --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c295e0b --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Presentation about software engineering in the cloud era + +This repo hosts the Markdown source of my presentation "On Software Engineering". + +The presentation is built using the static page generator [Hugo](https://gohugo.io/). +The Hugo theme [reveal-hugo](https://themes.gohugo.io/reveal-hugo/) is used to turn it into an HTML presentation with [reveal.js](https://revealjs.com/). + +## Rendering + +After cloning the main repo, you need to initialize the Git submodule: + +```shell +git submodule update --init --recursive +``` + +After that, run this command: + +```shell +hugo server +``` + + +## Maintenance + +Run the following command to update all submodules with their newest upstream version: + +```bash +git submodule update --remote +``` + +