Sample.app
Framework Guides

Jekyll

Deploy a Jekyll site to Sample.app.

Jekyll outputs to _site/ by default.

Deploy

Build your site

bundle exec jekyll build

Deploy to Sample.app

samplex deploy ./_site

Jekyll outputs to _site/, which is not auto-detected by the CLI. You must specify the directory explicitly.

Custom output directory

You can change the output directory in _config.yml:

_config.yml
destination: dist

Then auto-detection will find it:

samplex deploy

On this page