본문 바로가기
카테고리 없음

github 블로그 Hugo

by ahntae 2020. 12. 19.
반응형

1. Hugo를 설치한다. 

brew install hugo
mkdir hugo-blog
mkdir docs // 나중에 배포용 폴더
cd hugo-blog

2. 사이트를 생성

hugo new site <site-name>

3. 테마 받기 

themes.gohugo.io/ 에서 테마를 하나 고른 후 theme 폴더에서 다운받는다

ssh 를 이용할 경우 (난 이것을 받았다 themes.gohugo.io/hugo-tranquilpeak-theme/)

git clone themes.gohugo.io/hugo-tranquilpeak-theme/ 
 

Hugo Tranquilpeak Theme

A gorgeous responsive theme for Hugo blog framework

themes.gohugo.io

4. 받은 테마를 config.toml에 적용한다

theme = "hugo-tranquilpeak-theme"

5. 서버를 띄워본다 

hugo server -t hugo-tranquilpeak-theme
hugo server -D // -D : draft: true 도 같이 보기 

6. 배포 하기

github setting에서 배포 폴더 docs로 변경

hudo -D // 배포파일 public 폴더에 생성 
cp -r public/* ../docs

 

반응형