Popularity
0.6
Stable
Activity
0.0
Stable
5
0
0
Monthly Downloads: 18
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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of capistrano-kemal or a related project?
Popular Comparisons
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