bundle exec jekyll serve
http://localhost:4000
bundle exec jekyll serve --livereload
bundle exec jekyll serve --drafts
_drafts
폴더의 초안 글들도 사이트에 표시bundle exec jekyll serve --port 4001
bundle exec jekyll serve --host 0.0.0.0
# 실시간 새로고침 + 초안 포함 + 포트 변경
bundle exec jekyll serve --livereload --drafts --port 4001
# 네트워크 접근 허용 + 실시간 새로고침
bundle exec jekyll serve --host 0.0.0.0 --livereload
bundle exec jekyll build
_site
폴더에 정적 파일들만 생성bundle exec jekyll serve --incremental
Ctrl + C
Cmd + C
ps aux | grep jekyll
lsof -i :4000
# 프로세스 ID 확인 후
kill -9 [프로세스ID]
# 또는 포트 기반으로 종료
lsof -ti:4000 | xargs kill -9
bundle install
bundle update
jekyll --version
bundle exec jekyll --version
bundle exec jekyll serve --livereload
--livereload
: 실시간 새로고침--drafts
: 초안 글 포함 (필요시)--incremental
: 빠른 빌드 (큰 사이트의 경우)# 캐시 정리 후 재빌드
bundle exec jekyll clean
bundle exec jekyll serve --livereload
# 완전 재설치
rm -rf _site
rm Gemfile.lock
bundle install
bundle exec jekyll serve --livereload
JEKYLL_ENV=production bundle exec jekyll build
JEKYLL_ENV=production bundle exec jekyll serve
_config.yml
파일을 수정한 경우 서버를 재시작해야 합니다_site
폴더는 자동 생성되므로 Git에 추가하지 마세요마지막 업데이트: 2025년 9월 17일