Jekyll 블로그 되살리기! 🧐

저는 약 1 - 2년 전 Windows를 쓰던 노트북으로 jekyll 블로그를 만들었습니다. 그리고…

새 맥북으로 블로그 포스트를 작성하게 되었습니다! 야호
신나게 포스트를 작성하려는데… 블로그를 어떻게 관리했는지 기억이 안 나네요 🙃?!?!
블로그 Repository를 clone 받아서 바로 작업하면 되는 줄 알았는데…
여기저기서 빨간줄이! 😱

그래서 정리하는 Jekyll 블로그 사용 방법!

(참고: 해당 포스트는 Jekyll 블로그 생성기가 아니고 블로그를 잘 사용하는 방법에 대해 설명합니다!)




기본 설정 체크하기

✅ Ruby 설치


/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

brew install rbenv

rbenv install -l

rbenv install 3.0.3

rbenv versions

rbenv global 3.0.3

vim ~/.zshrc
[[ -d ~/.rbenv  ]] && \
  export PATH=${HOME}/.rbenv/bin:${PATH} && \
  eval "$(rbenv init -)"

source ~/.zshrc

✅ Bundler 설치

gem install bundler

bundle install
bundle update

✅ Jekyll 설치

gem install jekyll bundler

image





실행

bundle exec jekyll serve

image





아래는 제가 블로그를 로컬에서 실행하면서 찍혔던 버그들을 수정한 것들입니다.

Bugs 🐞

webrick

image



Liquid Warning

image

Before

image

After

> 참고 - ArrayList의 add
```java
var orderItems = new ArrayList<OrderItem>() {{
    add(new OrderItem(UUID.randomUUID(), 100L, 1));
}};

image



Conflict

image