mirror of
https://github.com/TrudeEH/web.git
synced 2025-12-06 16:33:37 +00:00
16 lines
224 B
Markdown
16 lines
224 B
Markdown
## Start Server
|
|
```sh
|
|
git submodule update --init --recursive
|
|
hugo server --disableFastRender -D #D to include drafts
|
|
```
|
|
|
|
## New Post
|
|
```sh
|
|
hugo new content directory/name.md
|
|
```
|
|
|
|
## Generate Site to Publish
|
|
```sh
|
|
hugo
|
|
```
|