From 67a7f7acb931a2694f3cf8da43573de4db358c43 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Sat, 25 Oct 2025 23:51:28 +0200 Subject: [PATCH] Add README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..181d337 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# WT Tutorial Presentations + +This repository contains the latex source files for the WT Tutorial slides. + +## Build + +### Local Environment + +```bash +$ make +``` + +### With Docker + +```bash +$ docker build . -t wt-tut +$ docker run --rm -u `id -u`:`id -g` -w $PWD -v $PWD:$PWD wt-tut make +```