execute jekyll blog in local server

  1. github.io 블로그 jekyll 로컬 서버 실행하기
    1. ruby 설치-rubyinstaller.org/downloads/
    2. window+r→ cmd
    3. gem install jekyll
    4. gem install bundler
    5. 프로젝트 폴더로 경로 이동
    6. powershell 창 열기
    7. bundle install
    8. bundle exec jekyll serve→bundle add webrick→bundle exec jekyll serve
    9. 크롬에서 localhost:4000
  2. 대문 페이지 수정 방법
    1. index.html 파일 수정 (html 문법으로 수정 가능)
    2. _config.yml 파일 수정 (title, description, url, baseurl 수정 가능)
    3. github repository에 push
    4. 이 사이트참조 하였음.
  3. 블로그 글 작성 방법
    1. _posts 폴더에 yyyy-mm-dd-title.md 파일 생성
    2. 파일 상단에 아래와 같은 형식으로 작성

Categories:

Updated: