capistrano: deploying production and staging to same database

26 views
Skip to first unread message

John Merlino

unread,
May 1, 2014, 2:50:36 AM5/1/14
to rubyonra...@googlegroups.com
I have the production and staging site on two different server ips. But the database, another server ip, is the same database used by both production and staging. When i set up the capistrano deploy task for both the production and staging, should I keep the db role in deploy.rb like this:

deploy.rb
role :db,  "database_ip", :primary => true 

production.rb
role :web, "production_ip"
role :app, "production_ip"

staging.rb
role :web, "staging_ip"
role :app, "staging_ip"

Or should I do it this way:

production.rb
role :web, "production_ip"
role :app, "production_ip"
role :db,  "database_ip", :primary => true 

staging.rb
role :web, "production_ip"
role :app, "production_ip"
role :db,  "database_ip", :primary => true 

Frederick Cheung

unread,
May 1, 2014, 1:21:50 PM5/1/14
to rubyonra...@googlegroups.com


On Thursday, May 1, 2014 7:50:36 AM UTC+1, John Merlino wrote:
I have the production and staging site on two different server ips. But the database, another server ip, is the same database used by both production and staging. When i set up the capistrano deploy task for both the production and staging, should I keep the db role in deploy.rb like this:


You could either. It might be easier to understand though if all the hosts for a given stage are in the same file.

However, the :db role doesn't actually mean the database server itself - it means where should migrations be run from.

Fred
Reply all
Reply to author
Forward
0 new messages