From 482621fd76732d8a89219ac0c4b23d088dc337ef Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 12 Jun 2019 15:19:05 +0200 Subject: [PATCH] Add more hacking instructions --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index f288d7b..c5b553e 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,24 @@ $ pip install pelican markdown Then generate the content and run the server: +### Generating the site + ```bash $ pelican content $ pelican --listen ``` + +Then the site is available at the following URL: + +> http://localhost:8000 + +### Working on the site + +Run the following: + +```bash +$ pelican --autoreload --listen +``` + +And then you can edit the files and the site will regenerate each time +automatically. It is faster this way to review what you are working on.