Popularity
0.6
Declining
Activity
0.0
Stable
5
0
0

Monthly Downloads: 20
Programming language: Ruby
Tags: DevOps    
Latest version: v0.1.0

capistrano-kemal alternatives and similar shards

Based on the "DevOps" category.
Alternatively, view capistrano-kemal alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of capistrano-kemal or a related project?

Add another 'DevOps' Shard

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, '[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