How do I deploy a Jekyll site?

Jekyll allows you to build static sites that you can deploy with Hatchbox.io

Written by Chris Oliver
Updated over a week ago
Deploying static sites with Hatchbox is as simple as building your site and outputting it to the public folder. This folder is served up by Caddy and will match URLs and check for an index.html anytime a folder is requested.

Edit your app's deploy script so it builds Jekyll and outputs to the `public` folder.
bundle install
jekyll build --destination public

Was this article helpful?