Jekyll Chirpy 테마를 연동 및 Github 블로그 만들기 1탄 - 로컬 테스트 및 확인
github.io로 블로그 만들기 1탄
Last updated
github.io로 블로그 만들기 1탄
Last updated
cd blog
git clone https://github.com/GoldenPearls/GoldenPerals.github.io.gitcd GoldenPerals.github.io
ruby -vC:\Users\rmawn\AppData\Local\Microsoft\WindowsAppsnpm install && npm run buildjekyll serve# frozen_string_literal: true
source "https://rubygems.org"
gemspec
group :test do
gem "html-proofer", "~> 5.0"
end# frozen_string_literal: true
source "https://rubygems.org"
gemspec
group :test do
gem "html-proofer", "~> 5.0"
end
gem "tzinfo" # 시간대 관리 라이브러리
gem "tzinfo-data" # Windows에서 tzinfo를 지원하기 위한 데이터jekyll serve# frozen_string_literal: true
source "https://rubygems.org"
gemspec
group :test do
gem "html-proofer", "~> 5.0"
end
gem "tzinfo" # 시간대 관리 라이브러리
gem "tzinfo-data" # Windows에서 tzinfo를 지원하기 위한 데이터
# Misc
#_sass/dist
#assets/js/distgit add .
git commit -m "docs: add new blog post"
git push# Bundler cache
.bundle
vendor
Gemfile.lock
# Jekyll cache
.jekyll-cache
.jekyll-metadata
_site
# RubyGems
*.gem
# NPM dependencies
node_modules
package-lock.json
# IDE configurations
.idea
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
!.vscode/tasks.json
# Misc
#_sass/dist
#assets/js/distgit add .
git commit -m "chore: update config.yml settings"
git push