Skip to content

bitfex/capistrano-kemal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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, '[email protected]:username/your-app.git'
set :deploy_to, '/home/user/apps/your-app/'
set :kemal_env, 'production'
set :kemal_file, 'src/app.cr' # main source file
set :kemal_app, 'app' # compiled binary name (usually filename of main source file without `.cr` extension)

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

Contributing

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