2017-10-29 19:39:46 +05:30
|
|
|
# jekyll
|
2017-10-26 23:43:18 +07:00
|
|
|
|
|
|
|
> A simple, blog-aware, static site generator.
|
2019-06-05 08:55:40 +01:00
|
|
|
> More information: <https://jekyllrb.com>.
|
2017-10-26 23:43:18 +07: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 07:11:40 -05:00
|
|
|
- Generate the current directory into `./_site`:
|
2017-10-26 23:43:18 +07:00
|
|
|
|
|
|
|
`jekyll build`
|
2020-08-31 01:20:01 +01:00
|
|
|
|
2021-01-10 14:38:26 -05:00
|
|
|
- Clean the site (removes site output and `cache` directory) without building:
|
2020-08-31 01:20:01 +01:00
|
|
|
|
|
|
|
`jekyll clean`
|