neiro blog

Deploy Jekyll with Capistrano

· [neiro]

If you’re using Jekyll to generate your static website, you may want to deploy it as simple and fast, as Jekyll works. For this case, Ruby ecosystem has remote server automation and deployment tool that called Capistrano .

First of all, you need to create Gemfile in your Jekyll project and add this lines:

1source 'https://rubygems.org'
2gem 'capistrano', '~> 3.4.0'

Then execute:

1bundle install && bundle exec cap install

This creates configuration files, that you can change with your parameters. Make sure that you set up production configuration with your server data (/config/deploy/production.rb):

1
2role :app, %w{user@server}
3role :web, %w{user@server}

After configuration you can deploy your project with one simple command:

1bundle exec cap production deploy

This command deploys source to /var/www/website_name, but it does not generate website. To execute jekyll build command you need to install Ruby using rbenv or RVM first.

Next you should add Capistrano plugin for rbenv in Gemfile:

1gem 'capistrano-rbenv', '~> 2.0'

Then execute

1bundle exec

And add this line to Capfile:

1require 'capistrano/rbenv'

Install Jekyll gem on server and add it to rbenv binaries list in config/deploy.rb:

1set :rbenv_map_bins, %w{rake gem bundle ruby jekyll}

Now you can use my capistrano-jekyll gem to execute jekyll build command every time when you deploy your website’s changes:

1# Gemfile
2gem 'capistrano-jekyll'
1$ bundle install && bundle exec cap production deploy

#jekyll #capistrano #deploy