This cookbooks installs the server-side Rails application. Unlike the official OpsCode cookbooks, this cookbook has all of the possible tweaks externalized in the form of attributes - it was intended that this cookbook is used by a wrapper cookbook that provides the attributes which configure the rails application per the requirements of the actual application.
This cookbook replaces the unicorn process supervisor to be upstart instead of runit, it means that it will work on Ubuntu systems, later versions might allow customizing the process supervisor as well.
Tested on Ubuntu 12.04 and depends on several OpsCode official cookbooks that actually do the majority of the work.
- git
- ruby
- nginx
- unicorn
- application
- application_ruby
- application_nginx
- database
Several of the above required minor modifications, all of these have pull requests and tickets with OpsCode, but until these get accepted, forks that include the modifications are available here -
- Modified Cookbook: https://github.com/devops-israel/opscode-cookbooks-application_ruby.git
- https://github.com/opscode-cookbooks/git.git
- https://github.com/opscode-cookbooks/ruby.git
- https://github.com/opscode-cookbooks/nginx.git
- https://github.com/opscode-cookbooks/unicorn.git
- https://github.com/opscode-cookbooks/application.git
- https://github.com/opscode-cookbooks/application_ruby.git
- https://github.com/opscode-cookbooks/application_nginx.git
- https://github.com/opscode-cookbooks/database.git
Key | Type | Description | Default |
---|---|---|---|
rails/ruby/version | String | which ruby version to use, see: ruby cookbook | 1.9.1 |
rails/app/name | String | how to call the application | rails_app |
rails/app/path | String | where the application is deployed to | /var/www/project/{{rails/app/name}} |
rails/app/environment | String | rails/rack environment name | production |
rails/owner | String | user name to own files and processes | deploy |
rails/group | String | group name to own files and processes | deploy |
rails/packages | Array | additional packages that need to be installed for the application to work | [ ] |
rails/gems | Array | additional system-wide gems that need to be installed for the application to work | [ ] |
Just include rails_application
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[rails_application]"
]
}
This cookbook is still a work in progress, you are welcome to help by contributing fixes, documentation and tests.
e.g.
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
See LICENSE for full details.
- Evgeny Zislis [email protected]
- Elad Dolev [email protected]
- Daniel github.com/emirikol