From 353cdd38f2cd880e2a19da3f9f9365c35dc61609 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 12 Jun 2019 15:13:20 +0200 Subject: [PATCH] Add instructions for generating the site --- .gitignore | 1 + README.md | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea1472e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +output/ diff --git a/README.md b/README.md index ef8e81f..f288d7b 100644 --- a/README.md +++ b/README.md @@ -26,3 +26,10 @@ Then install the requirements: ```bash $ pip install pelican markdown ``` + +Then generate the content and run the server: + +```bash +$ pelican content +$ pelican --listen +```