From f81fd17662b8f47f66e48574fd0336bfd0c83081 Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Sat, 31 Aug 2024 12:27:34 -0600 Subject: [PATCH] dev.libre.is --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..19e316f --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# dev.libre.is + +Source code for the https://dev.libre.is documentation website. + +# Build +How to build these docs. + +``` +git clone https://code.libre.is/libre/dev-libre-is +# or +git clone git@code.libre.is:libre/dev-libre-is.git + +cd dev-libre-is/ +python -m venv venv +source venv/bin/activate +pip install -U pip poetry +poetry install +make clean +make all +rsync -ultav docs/_build/html/ dev-libre-is:/var/www/html/dev-libre-is/ +```