diff options
| author | mo khan <mo@mokhan.ca> | 2015-05-02 21:17:41 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-05-02 21:17:41 -0600 |
| commit | 237452138741fc61873c2c0318d31a36b09b8324 (patch) | |
| tree | 666accc4d5db324ee493e5c9e0c5e2b13e5165bf /attributes | |
| parent | 2d78c33c68596d9b667a2ffdcba1a0d05664dd83 (diff) | |
add user recipe and test capistrano recipe with test-kitchen.
Diffstat (limited to 'attributes')
| -rw-r--r-- | attributes/default.rb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/attributes/default.rb b/attributes/default.rb new file mode 100644 index 0000000..ecd5eb6 --- /dev/null +++ b/attributes/default.rb @@ -0,0 +1,43 @@ +default['user']['username'] = 'rails' +default['capistrano']['root_path'] = '/var/www/app' +default['capistrano']['username'] = default['user']['username'] +default['capistrano']['env'] = { + aws: { + access_key: '', + secret_access_key: '', + product_key: '', + associate_id: '', + s3_backup_bucket: '', + s3_bucket: '', + }, + asset_host: '', + smtp: { + host: '', + port: '', + domain: '', + username: '', + password: '', + }, + mix_panel_api_key: '', + secret_token: '', + google_analytics: '', + embedly_key: '', + facebook_app_id: '', + disqus: { + api_key: '', + secret_key: '', + short_name: '', + }, + exception_email_address: '', + mailchimp: { + api_key: '', + list_id: '', + }, + twitter: { + consumer_key: '', + consumer_secret: '', + access_token: '', + access_secret: '', + }, + newrelic_key: '', +} |
