Sha256: 49db5ba4f5de73f59c13eed09e0b0fa4124f86a7a7030ce71e6c1dddf75542b5

Contents?: true

Size: 1.45 KB

Versions: 1

Compression:

Stored size: 1.45 KB

Contents

# Capistrano Kyan

Capistrano plugin that includes a collection of tasks we find useful here at Kyan.

## Usage

### Setup

Add the library to your `Gemfile`:

```ruby
group :development do
  gem 'capistrano-kyan'
end
```

And load it into your deployment script `config/deploy.rb`:

```ruby
require 'capistrano-kyan'
```

Add kyan vhost task hook:

```ruby
after "deploy:setup", "kyan:vhost:setup"
```

Add kyan db task hook:

```ruby
after "deploy:setup", "kyan:db:setup"
```

### Test

First, make sure you're running the latest release:

```
cap deploy:setup
```

Then you can test each individual task:

```
cap kyan:db:setup
cap kyan:vhost:setup
```

## Configuration

You can modify any of the following options in your `deploy.rb` config.

- `vhost_env` - Set vhost environment. Default to `rails_env` variable.
- `vhost_tmpl_path` - Set vhost template path. Default to `config/deploy`.
- `vhost_tmpl_name` - Set vhost template name. Default to `vhost.conf.erb`.
- `vhost_server_path` - Set vhost server path. Default to `/etc/nginx/sites-enabled`.
- `vhost_server_name` - Set vhost server name. Default to `File.basename(deploy_to)`.

I'm assuming you are using capistrano multistage.

## Available Tasks

To get a list of all capistrano tasks, run `cap -T`:

```
cap kyan:db:setup               # Creates a database.yml file in the apps shared path.
cap kyan:vhost:setup            # Creates and symlinks an Nginx virtualhost entry.
```

## License

See LICENSE file for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capistrano-kyan-0.2.11 README.md