Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/huacnlee/capistrano-upload-configs

Capistrano plugin for Upload local config files to remote, and create soft link.
https://github.com/huacnlee/capistrano-upload-configs

capistrano-plugin config

Last synced: about 1 month ago
JSON representation

Capistrano plugin for Upload local config files to remote, and create soft link.

Awesome Lists containing this project

README

        

Capistrano plugin - Upload Configs
----------------------------------

Capistrano plugin for Upload local config files to remote, and create soft link.

For example:

- config/app.yml
- config/database.yml
- etc/nginx/nginx.conf -> /etc/nginx/nginx.conf
- etc/nginx/ssl/foo.key -> /etc/nginx/ssl/foo.key

```rb
append :linked_files, *%w(
config/app.yml
config/database.yml
)

# will link with absolute path
set :absolute_linked_files, %w(
etc/nginx/nginx.conf
etc/nginx/ssl/foo.key
)
```

## Tasks

- cap production config:check
- cap production config:push
- cap production config:pull