Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solareenlo/blog-hugo
Hugoで作ったblog. 出来上がり→https://github.com/solareenlo/solareenlo.github.io
https://github.com/solareenlo/blog-hugo
hugo hugo-blog
Last synced: 4 days ago
JSON representation
Hugoで作ったblog. 出来上がり→https://github.com/solareenlo/solareenlo.github.io
- Host: GitHub
- URL: https://github.com/solareenlo/blog-hugo
- Owner: solareenlo
- Created: 2019-04-13T22:27:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-17T02:19:45.000Z (almost 2 years ago)
- Last Synced: 2024-11-08T02:46:27.749Z (about 2 months ago)
- Topics: hugo, hugo-blog
- Language: Shell
- Homepage: https://solareenlo.com
- Size: 4.49 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blog-hugo
- Hugoで作ったblogの元ファイル.
- 出来上がり: https://github.com/solareenlo/solareenlo.github.io
- デプロイしたサイト: https://solareenlo.com
- Dockerfile: https://github.com/solareenlo/docker-alpine-hugo
- Hugo Theme: https://github.com/alex-shpak/hugo-book## Usage
### ローカルで走らせる(docker編)
```bash
docker run --rm -it -v $(PWD):/src -p 1313:1313 peaceiris/hugo server --bind=0.0.0.0
docker run --rm -it -v $(PWD):/src -p 1313:1313 peaceiris/hugo new site test
```Reference: https://github.com/peaceiris/hugo-extended-docker
### ローカルで走らせる(docker-compose編)
```bash
git clone --recurse-submodules [email protected]:solareenlo/blog-hugo.git
cd blog-hugo
# docker-composeで走らせる.
docker-compose up -d
# localhost:1313を任意のブラウザで確認する.
# docker-composeを止める.
docker-compose down
```### ローカルで走らせる(hugo server編)
```bash
git clone --recurse-submodules [email protected]:solareenlo/blog-hugo.git
cd blog-hugo
hugo server -D --cleanDestinationDir
# localhost:1313を任意のブラウザで確認する.
```### 記事を追加する
- ドキュメントを追加するには`content`->`docs`
- 作成したドキュメントをメニューに追加するには`content`->`menu`
- blogを追加するには`content`->`posts`### github pages にデプロイする
```bash
# For Mac
brew update
brew upgrade
brew install hugo
bash deploy.sh
```