README.md in negroku-2.6.0 vs README.md in negroku-2.7.0

- old
+ new

@@ -114,20 +114,21 @@ require 'capistrano/nodenv' # require 'capistrano/bower' # App server require 'capistrano3/unicorn' + # require 'capistrano/puma' # Static server require 'capistrano/nginx' ``` 1. Configure your specific settings in the files created above 1. Common settings for all stages `deploy.rb` - Here you can add all the settings that are common to all the stage severs. For example: + Here you can add all the settings that are common to all the stage severs. For example: ```ruby set :unicorn_workers, 1 set :unicorn_workers_timeout, 30 ``` @@ -138,11 +139,11 @@ Here you can add all the settings that are specific to the stage. For example: ```ruby set :branch, "production" # Optional, defaults to master - set :rails_env, "production" + set :rails_env, "production" ``` 1. Commit and push the changes to the repository ## Deploy you application @@ -151,13 +152,34 @@ ```shell $ cap staging deploy # to deploy to the staging stage ``` -## Tasks +## Supports -1. [Rails](docs/TASKS.md#rails) -1. [Whenever](docs/TASKS.md#whenever) +### Web server + + - nginx + +### App servers + + - puma + - unicorn + +### Tools + + - bower + - bundler + - delayed jobs + - eye process monitoring + - thinking sphinx + - [Whenever](docs/TASKS.md#whenever) + +### Other features + + - Github deployment api + - [Logs](docs/TASKS.md#logs) + - [Rails](docs/TASKS.md#rails) ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)