title | intro | redirect_from | product | versions | topics | shortTitle | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Testing your GitHub Pages site locally with Jekyll |
You can build your {% data variables.product.prodname_pages %} site locally to preview and test changes to your site. |
|
{% data reusables.gated-features.pages %} |
|
|
Test site locally with Jekyll |
Anyone with read permissions for a repository can test a {% data variables.product.prodname_pages %} site locally.
Before you can use Jekyll to test a site, you must:
- Install Jekyll.
- Create a Jekyll site. For more information, see "Creating a {% data variables.product.prodname_pages %} site with Jekyll."
{% data reusables.pages.recommend-bundler %}
{% data reusables.pages.jekyll-install-troubleshooting %}
{% data reusables.command_line.open_the_multi_os_terminal %}
{% data reusables.pages.navigate-publishing-source %}
3. Run bundle install
.
3. Run your Jekyll site locally.
$ bundle exec jekyll serve
> Configuration file: /Users/octocat/my-site/_config.yml
> Source: /Users/octocat/my-site
> Destination: /Users/octocat/my-site/_site
> Incremental build: disabled. Enable with --incremental
> Generating...
> done in 0.309 seconds.
> Auto-regeneration: enabled for '/Users/octocat/my-site'
> Configuration file: /Users/octocat/my-site/_config.yml
> Server address: http://127.0.0.1:4000/
> Server running... press ctrl-c to stop.
- To preview your site, in your web browser, navigate to
http://localhost:4000
.
{% note %}
Note: If you are using Ruby 3.0 and Jekyll 4.2.x or older, you will need to add the webrick
gem to your project's Gemfile prior to running bundle install
.
{% endnote %}
Jekyll is an active open source project that is updated frequently. If the github-pages
gem on your computer is out of date with the github-pages
gem on the {% data variables.product.prodname_pages %} server, your site may look different when built locally than when published on {% data variables.product.product_name %}. To avoid this, regularly update the github-pages
gem on your computer.
{% data reusables.command_line.open_the_multi_os_terminal %}
2. Update the github-pages
gem.
- If you installed Bundler, run bundle update github-pages
.
- If you don't have Bundler installed, run gem update github-pages
.
- {% data variables.product.prodname_pages %} in the Jekyll documentation