https://github.com/daejoon/daejoon.github.io
블로그
https://github.com/daejoon/daejoon.github.io
blog
Last synced: about 1 year ago
JSON representation
블로그
- Host: GitHub
- URL: https://github.com/daejoon/daejoon.github.io
- Owner: daejoon
- License: gpl-3.0
- Created: 2019-01-23T09:50:21.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T11:38:47.000Z (over 2 years ago)
- Last Synced: 2024-04-15T09:09:49.057Z (over 2 years ago)
- Topics: blog
- Language: JavaScript
- Homepage: https://blog.ddoong2.com
- Size: 24.5 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)