2017-10-29 14:09:46 +00:00
|
|
|
# jekyll
|
2017-10-26 17:43:18 +01:00
|
|
|
|
|
|
|
> A simple, blog-aware, static site generator.
|
2022-11-15 12:45:55 +00:00
|
|
|
> More information: <https://jekyllrb.com/docs/usage/>.
|
2017-10-26 17:43:18 +01:00
|
|
|
|
|
|
|
- Generate a development server that will run at http://localhost:4000/:
|
|
|
|
|
|
|
|
`jekyll serve`
|
|
|
|
|
|
|
|
- Enable incremental regeneration:
|
|
|
|
|
|
|
|
`jekyll serve --incremental`
|
|
|
|
|
2020-08-31 01:20:01 +01:00
|
|
|
- Enable verbose output:
|
|
|
|
|
|
|
|
`jekyll serve --verbose`
|
|
|
|
|
2020-12-03 12:11:40 +00:00
|
|
|
- Generate the current directory into `./_site`:
|
2017-10-26 17:43:18 +01:00
|
|
|
|
|
|
|
`jekyll build`
|
2020-08-31 01:20:01 +01:00
|
|
|
|
2021-01-10 19:38:26 +00:00
|
|
|
- Clean the site (removes site output and `cache` directory) without building:
|
2020-08-31 01:20:01 +01:00
|
|
|
|
|
|
|
`jekyll clean`
|