first commit

This commit is contained in:
2020-09-30 15:00:17 +02:00
parent 82280cb3fb
commit b36af3d41c
227 changed files with 57848 additions and 0 deletions

22
render Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/sh
#
# Inital Setup see:
# https://asciidoctor.org/docs/asciidoctor-revealjs/
SRCFILE=presentation.adoc
SRCFILE=presentation.adoc
echo "Rendering presentation.adoc"
bundle exec asciidoctor-revealjs $SRCFILE
echo "Starting Webserver on :8000"
python -m SimpleHTTPServer >/dev/null 2>&1 &
chromium-browser http://localhost:8000/presentation.html > /dev/null &
echo "Watching *.adoc for changes"
inotifywait -m -e close_write *.adoc |
while read events; do
echo $events
bundle exec asciidoctor-revealjs $SRCFILE
done