2017-10-29 14:09:46 +00:00
|
|
|
# jekyll
|
2017-10-26 17:43:18 +01:00
|
|
|
|
|
|
|
> A simple, blog-aware, static site generator.
|
2019-06-05 08:55:40 +01:00
|
|
|
> More information: <https://jekyllrb.com>.
|
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`
|
|
|
|
|
2019-02-11 18:00:49 +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
|
|
|
|
|
|
|
- Clean the site (removes site output and cache folder) without building:
|
|
|
|
|
|
|
|
`jekyll clean`
|