mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
1d463f27dd
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com> Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
29 lines
414 B
Markdown
29 lines
414 B
Markdown
# hexo
|
|
|
|
> A fast, simple & powerful blog framework.
|
|
> More information: <https://hexo.io/>.
|
|
|
|
- Initialize a website:
|
|
|
|
`hexo init {{path/to/directory}}`
|
|
|
|
- Create a new article:
|
|
|
|
`hexo new {{layout}} {{title}}`
|
|
|
|
- Generate static files:
|
|
|
|
`hexo generate`
|
|
|
|
- Start a local server:
|
|
|
|
`hexo server`
|
|
|
|
- Deploy the website:
|
|
|
|
`hexo deploy`
|
|
|
|
- Clean the cache file (`db.json`) and generated files (`public/`):
|
|
|
|
`hexo clean`
|