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