0.01
No commit activity in last 3 years
No release in over 3 years
Capistrano integration for Kemal
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.12
~> 10.0
~> 3.0
 Project Readme

capistrano-kemal

This is a Capistrano v3 plugin that integrates Kemal tasks into capistrano deployment scripts to ease deployment.

Installation

Add capistrano-kemal to your Gemfile.

gem 'capistrano-kemal'

Load capistrano-kemal in your Capfile.

require 'capistrano/kemal'

That's it.

Example

Here's an example

set :application, 'your-app'
set :repo_url, 'git@github.com:username/your-app.git'
set :deploy_to, '/home/user/apps/your-app/'
set :kemal_env, 'production'


after 'deploy:publishing', 'kemal:restart'

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/sdogruyol/capistrano-kemal.