Jekyll โ Run and Build
Requirements:
- Ruby (latest stable), RubyGems, Bundler
Install on macOS (Homebrew):
brew install rubygem install bundler jekyll
Windows: Use RubyInstaller (https://rubyinstaller.org), then:
gem install bundler jekyll
Create a new site:
jekyll new my-jekyll-sitecd my-jekyll-sitebundle install
Run locally:
bundle exec jekyll serve
Visit http://localhost:4000
Build for production (output to _site/
):
bundle exec jekyll build
Deploy _site/
folder to your static host.