An open API service indexing awesome lists of open source software.

https://github.com/daejoon/daejoon.github.io

블로그
https://github.com/daejoon/daejoon.github.io

blog

Last synced: about 1 year ago
JSON representation

블로그

Awesome Lists containing this project

README

          

# This is Daejoon's blog

- [minimal-mistakes](https://github.com/mmistakes/minimal-mistakes) 테마를 사용했다.
- 블로그 방문: [https://blog.ddoong2.com](https://blog.ddoong2.com)

## Local Jekyll 실행 방법

```shell
bundle exec jekyll serve --watch
```

## Jekyll 라이브러리 업데이트

```shell
bundle update
```

## 설치가 한방에 안될때

* rbenv 설치

```shell
brew install rbenv
```

### 최신 버전 루비 설치

* Ruby 목록 확인

```shell
rbenv install -l
```

* 최신버전 install

```shell
rbenv install {루비 버전}
```

* 해당 로컬에서만 루비 적용

```shell
rbenv local {루비 버전}
```

* `Gemfile.lock` 삭제
* `bundle update` 명령어 실행
* `bundle exec jekyll serve --watch`

## 참고

* [Jekyll 설치](https://jekyllrb-ko.github.io/docs/installation/macos/)
* [Jekyll 환경설정](https://jekyllrb-ko.github.io/docs/configuration/)
* [bundler](https://bundler.io/)