https://github.com/joergi/blog
https://github.com/joergi/blog
arch-linux blog code developing jekyll linux ubuntu
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joergi/blog
- Owner: joergi
- Created: 2025-01-17T13:27:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-18T11:28:22.000Z (7 months ago)
- Last Synced: 2025-07-20T08:59:37.236Z (6 months ago)
- Language: HTML
- Homepage: https://blog.joergi.io
- Size: 4.94 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Hugo
Start server:
```bash
hugo server -D
```
start with local config
```bash
hugo server -D --config config.local.toml
```
Start with IP binding
```bash
hugo server -D --bind 192.168.178.162 --appendPort=false
```
website can be then reached by: http://192.168.178.162:1313
update server
```bash
hugo --logLevel info
```
kill server
```bash
pkill hugo
```