just the docs 를 통한 Github 블로그 만들기
Windows 10 환경에 깃헙 블로그를 만들어보자.
설정 도중 출력된 에러까지 해결해보자.
1. ruby install
2. gem install bundler jekyll
github 블로그를 jekyll 테마를 통해 생성하려면 아래와 같은 명령어를 사용한다.
# Install bundler pacakge manager and jekyll
# --platform : OS
# --(no-)lock : Create a lock file
$ gem install bundler jekyll --platform <platform> --no-lock
Gemfile
Gemfile.lock
3. bundle install
Gemfile 을 참고하여 필요한 패키지를 설치하는 명렁어다.
근데 Bundler 가 뭔가요?
루비 프로젝트에 필요한
'Gem 패키지 매니저'
설치 완료시 Gemfile.lock 에 각 패키지들의 버전 정보가 추가된다. (package.json - package-lock.json 관계를 연상해보라)
아래와 같은 에러를 만났다.
An error occurred while installing racc (1.6.2), and Bundler cannot continue.
In Gemfile:
sassc-rails was resolved to 2.1.2, which depends on
railties was resolved to 7.0.4, which depends on
actionpack was resolved to 7.0.4, which depends on
actionview was resolved to 7.0.4, which depends on
rails-dom-testing was resolved to 2.0.3, which depends on
nokogiri was resolved to 1.13.10, which depends on
racc
ssl certificate 관련 에러가 발생하면?
별도로 ssl 인증서 파일을 지정해주는 방법도 있지만 귀찮다면 그냥
Gemfile 내의 https://~ 도메인을 http://~ 로 변경해주면된다.
각 모듈별 버전 정보 (2023-01-05)
index | version |
ruby | 3.2.0 |
jekyll | 4.3.1 |
bundle | 2.4.2 |
References
'기타 > git' 카테고리의 다른 글
Git repsotiroy migration 전략 (0) | 2024.04.17 |
---|---|
[git] revert 명령어 (0) | 2023.04.27 |
[git] gitlab CI/CD to AWS EC2 (2) (0) | 2022.04.29 |
[git] gitlab CI/CD to AWS EC2 (1) (0) | 2022.04.25 |
[git] tag (0) | 2022.03.19 |