Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeromake/zeromake.github.io
static-blog
https://github.com/zeromake/zeromake.github.io
Last synced: about 1 month ago
JSON representation
static-blog
- Host: GitHub
- URL: https://github.com/zeromake/zeromake.github.io
- Owner: zeromake
- License: apache-2.0
- Created: 2016-10-11T09:42:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-11T06:54:15.000Z (about 2 months ago)
- Last Synced: 2024-11-11T07:35:25.532Z (about 2 months ago)
- Language: SCSS
- Homepage: https://blog.zeromake.com
- Size: 7.66 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 57
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zeromake-blog
my hugo static blog
## my hugo fork download
**MacOSX**
``` bash
curl -fLo hugo.tar.gz https://github.com/zeromake/hugo/releases/download/v0.128.2/hugo_extended_0.128.2_darwin-universal.tar.gz
tar -xf hugo.tar.gz
rm hugo.tar.gz
```**Linux**
``` bash
curl -fLo hugo.tar.gz https://github.com/zeromake/hugo/releases/download/v0.128.2/hugo_extended_0.128.2_linux-amd64.tar.gz
tar -xf hugo.tar.gz
rm hugo.tar.gz
```**Windows**
``` pwsh
Invoke-WebRequest -Uri https://github.com/zeromake/hugo/releases/download/v0.128.2/hugo_extended_0.128.2_windows-amd64.zip -OutFile hugo.zip
Expand-Archive -Path hugo.zip -DestinationPath .
Remove-Item hugo.zip
```## dev server
``` bash
./hugo server -D
```## build static files
``` bash
./hugo --enableGitInfo --gc --minify
```