templates/config/deploy.rb in mana-0.0.6 vs templates/config/deploy.rb in mana-0.0.7
- old
+ new
@@ -25,17 +25,22 @@
poll_period: 30
set :railsapp,
server_names: '_' #TODO: change this to domain name(s) of the project
+set :aws,
+ access_key_id: '',
+ secret_access_key: '' #TODO: set this to let railsapp::backup put backups in s3
+
# For other options look into cookbooks/*/attributes/default.rb
# and other cookbook sources.
set :run_list, %w(
recipe[monit]
recipe[monit::ssh]
recipe[postgresql]
recipe[nginx]
recipe[railsapp]
+ recipe[railsapp::backup]
)
after 'deploy:restart', 'deploy:restart_unicorn'