Hugo Getting Started

ローカルのMacでhugoを動かす。 $ brew install hugo $ hugo version Hugo Static Site Generator v0.42.2 darwin/amd64 $ hugo new site mysite $ cd mysite/ $ git init $ git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke $ echo 'theme = "ananke"' >> config.toml $ hugo new posts/install-golang.md /Users/wang/work/github/mysite/content/posts/install-golang.md created $ hugo server -D http://localhost:1313/ へアクセスする。

GolangをCentos7にインストール

Centos 7にGolangをインストール $ wget https://storage.googleapis.com/golang/go1.10.3.linux-amd64.tar.gz sudo tar -C /usr/local -xvzf go1.10.3.linux-amd64.tar.gz $ tee -a /etc/profile.d/path.sh <<-'EOF' export PATH=$PATH:/usr/local/go/bin EOF $ tee -a ~/.bash_profile <<-'EOF' export GOBIN="$HOME/go-projects/bin" export GOPATH="$HOME/go-projects" EOF $ mkdir -p $HOME/go-projects/bin $HOME/go-projects/src $ source /etc/profile && source ~/.bash_profile