Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seuros/capistrano-puma
Puma integration for Capistrano
https://github.com/seuros/capistrano-puma
Last synced: 26 days ago
JSON representation
Puma integration for Capistrano
- Host: GitHub
- URL: https://github.com/seuros/capistrano-puma
- Owner: seuros
- License: mit
- Created: 2013-10-25T12:29:03.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-09-20T15:05:54.000Z (about 2 months ago)
- Last Synced: 2024-10-06T03:37:47.183Z (about 1 month ago)
- Language: Ruby
- Homepage: https://github.com/seuros/capistrano-puma
- Size: 305 KB
- Stars: 615
- Watchers: 12
- Forks: 299
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Gem Version](https://badge.fury.io/rb/capistrano3-puma.svg)](http://badge.fury.io/rb/capistrano3-puma)
# Capistrano::Puma## Installation
Add this line to your application's Gemfile:
gem 'capistrano3-puma', github: "seuros/capistrano-puma"
or:
gem 'capistrano3-puma' , group: :development
And then execute:
$ bundle
## Usage
```ruby
# Capfilerequire 'capistrano/puma'
install_plugin Capistrano::Puma # Default puma tasks
install_plugin Capistrano::Puma::Systemd
```To prevent loading the hooks of the plugin, add false to the load_hooks param.
```ruby
# Capfileinstall_plugin Capistrano::Puma, load_hooks: false # Default puma tasks without hooks
```To make it work with rvm, rbenv and chruby, install the plugin after corresponding library inclusion.
```ruby
# Capfilerequire 'capistrano/rbenv'
require 'capistrano/puma'
install_plugin Capistrano::Puma
```### Config
Puma configuration is expected to be in `config/puma.rb` or `config/puma/#{fetch(:puma_env)}.rb` and checked in your repository.
Uploading the configuration via capistrano was removed as it was causing problems with custom configurations.### Deployment
Before running `$ bundle exec cap {stage} deploy` for the first time, install Puma on the deployment server. For example, if stage=production:
```
$ bundle exec cap production puma:install
```To uninstall,
```
$ bundle exec cap production puma:uninstall
```### Full Task List
```
$ cap -T puma
cap puma:disable # Disable Puma systemd service
cap puma:enable # Enable Puma systemd service
cap puma:install # Install Puma systemd service
cap puma:reload # Reload Puma service via systemd
cap puma:restart # Restart Puma service via systemd
cap puma:restart_socket # Restart Puma socket via systemd
cap puma:smart_restart # Restarts or reloads Puma service via systemd
cap puma:start # Start Puma service via systemd
cap puma:status # Get Puma service status via systemd
cap puma:stop # Stop Puma service via systemd
cap puma:stop_socket # Stop Puma socket via systemd
cap puma:uninstall # Uninstall Puma systemd service
```
## ExampleA sample application is provided to show how to use this gem at https://github.com/seuros/capistrano-example-app
### Systemd Socket Activation
Systemd socket activation starts your app upon first request if it is not already running
```ruby
set :puma_enable_socket_service, true
```For more information on socket activation have a look at the `systemd.socket` [man page](https://man7.org/linux/man-pages/man5/systemd.socket.5.html).
To restart the listening socket using Systemd run
```
cap puma:systemd:restart_socket
```
This would also restart the puma instance as the puma service depends on the socket service being active### Other configs
Configurable options, shown here with defaults: Please note the configuration options below are not required unless you are trying to override a default setting, for instance if you are deploying on a host on which you do not have sudo or root privileges and you need to restrict the path. These settings go in the deploy.rb file.
```ruby
set :puma_user, fetch(:user)
set :puma_role, :web
set :puma_service_unit_env_files, []
set :puma_service_unit_env_vars, []
```__Notes:__ If you are setting values for variables that might be used by other plugins, use `append` instead of `set`. For example:
```ruby
append :rbenv_map_bins, 'puma', 'pumactl'
```# Nginx documentation
Nginx documentation was moved to [nginx.md](docs/nginx.md)## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request