This README provides a step-by-step guide on how to set up a local environment on a clean Windows installation using Chocolatey.
- A clean installation of Windows.
- Chocolatey package manager installed. If not already installed, follow the instructions at Chocolatey Installation Guide.
Jekyll requires Ruby to run. We'll use Chocolatey to install Ruby.
choco install ruby -yAfter installation, restart your command prompt or PowerShell to refresh the environment variables.
Bundler manages Ruby gem dependencies, and Jekyll is the static site generator used.
gem install jekyll bundlerNavigate to your project directory and install dependencies.
bundle installStart the jekyll server
bundle exec jekyll serve