Fix a link, add some more, explain auto-reloading

This commit is contained in:
Luke Murphy 2019-06-17 11:56:16 +02:00
parent 84b4e937ab
commit 7ba178034b
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -45,7 +45,8 @@ Then the site is available at the following URL:
## Working with the site ## Working with the site
* Website articles and content are in [content](./content) * Website articles and content are in [content](./content)
* The website theme is in [themes/homebrewtheme](./themes/homebrewserver) * The website theme is in [themes/homebrewtheme](./themes/homebrewtheme)
* Images are stored in [content/staticfiles/images](./content/staticfiles/images)
While working on the site, you can run the following: While working on the site, you can run the following:
@ -54,7 +55,13 @@ $ invoke livereload
``` ```
And then the Pelican development server will automatically reload And then the Pelican development server will automatically reload
when you make changes. when you make changes. It is also possible to use:
```bash
$ pelican --autoreload --listen
```
However, this will not automatically refresh your browser page.
## Deploying the site ## Deploying the site