Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/springmt/unicorn-configurator_from_env
Change Unicorn worker num or timeout sec from ENV
https://github.com/springmt/unicorn-configurator_from_env
Last synced: about 1 month ago
JSON representation
Change Unicorn worker num or timeout sec from ENV
- Host: GitHub
- URL: https://github.com/springmt/unicorn-configurator_from_env
- Owner: SpringMT
- License: mit
- Created: 2015-05-31T06:32:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-28T11:07:15.000Z (almost 8 years ago)
- Last Synced: 2024-12-01T19:45:15.375Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Unicorn::ConfiguratorFromEnv
Change Unicorn worker num or timeout sec from ENV
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'unicorn-configurator_from_env'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install unicorn-configurator_from_env
## Usage
1. Require this module and call worker_processes.```ruby
# In config/unicorn.rbrequire 'unicorn/configurator_from_env'
worker_processes 1
```2. Start Unicorn with env.
```sh
% UNICORN_WORKER_PROCESS_NUM=3 bundle exec unicorn
```## Contributing
1. Fork it ( https://github.com/[my-github-username]/unicorn-configurator_from_env/fork )
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 a new Pull Request