Downloading and Running a Jekyll Site Locally on Windows Using VSCode
Downloading and Running a Jekyll Site Locally on Windows Using VSCode
We will cover in this section:
- Setting Up Prerequisites: Installing Ruby, Jekyll, Git, and VSCode on Windows.
- Cloning the GitHub Repository: Using Git to download the Jekyll site code from GitHub.
- Installing Dependencies: Using
bundle install
to set up necessary gems for Jekyll. - Serving the Site Locally: Running
bundle exec jekyll serve
to start the local Jekyll server and preview the site.
To download your GitHub repository and run Jekyll on Visual Studio Code (VSCode) on Windows, follow these steps:
Step 1: Install Prerequisites
- Install Ruby and Jekyll:
- Download and install Ruby for Windows from the RubyInstaller.
- After installation, open a new terminal (Command Prompt or PowerShell) and install Jekyll and Bundler by running:
gem install jekyll bundler
- Install Git:
- Download and install Git for Windows from git-scm.com. This will allow you to clone your repository.
- Install VSCode:
- Download and install Visual Studio Code if you haven’t already.
Step 2: Clone Your GitHub Repository
- Open Git Bash or Command Prompt:
- In Windows, open Git Bash, Command Prompt, or PowerShell.
- Navigate to Your Desired Directory:
cd path\to\your\desired\directory
- Clone the Repository:
- Replace
your-username
andyour-repository
with your GitHub username and repository name:git clone https://github.com/your-username/your-repository.git
- This will download the repository to your local directory.
- Replace
Step 3: Open the Project in VSCode
- Open Visual Studio Code and go to
File
>Open Folder...
. - Select the folder where you cloned your GitHub repository.
Step 4: Install Jekyll Dependencies
- Open the Terminal in VSCode:
- Go to
View
>Terminal
to open the integrated terminal in VSCode.
- Go to
- Navigate to Your Jekyll Project Directory:
- Ensure you’re in the correct directory where your Jekyll project is located.
- Install Dependencies with Bundler:
- Run the following command to install the necessary dependencies:
bundle install
- Run the following command to install the necessary dependencies:
Step 5: Serve the Jekyll Site Locally
- Run the Jekyll Server:
- Start the Jekyll server by running:
bundle exec jekyll serve
- This will start a local server for your Jekyll site. You can access it at
http://127.0.0.1:4000
in your browser.
- Start the Jekyll server by running:
- View Live Changes:
- As you make updates in VSCode, Jekyll will automatically regenerate the site, allowing you to see changes immediately in your browser.
Additional Tips
- Incremental Builds: For faster builds during development, you can add the
--incremental
flag:bundle exec jekyll serve --incremental
- Error Debugging: If you encounter any errors, try using
--trace
for detailed output:bundle exec jekyll serve --trace