19 lines
776 B
Markdown
19 lines
776 B
Markdown
# Project guide
|
|
|
|
## System requirement
|
|
|
|
**Hugo version**: hugo v0.145.0-666444f0a52132f9fec9f71cf25b441cc6a4f355+extended
|
|
|
|
### Build commnands
|
|
|
|
- Build your site or compile the code with latest i18n changes or content changes
|
|
`hugo build --cleanDestinationDir`
|
|
|
|
- Run your site after compilation, this will display all the published content (i.e., draft:false)
|
|
`hugo server`
|
|
|
|
- Run your site after compilation, this will display all content irrespective of publish status (i.e., draft:false/true)
|
|
`hugo server -D`
|
|
|
|
**Note:** if you can't see any changes in the browser regarding i18n or content then, use `hugo serve --noHTTPCache --ignoreCache --disableFastRender` and then press ctrl + shift + r on windows or cmd + shift + r on mac to clear browser cache
|