ブランチごとに個別のデータベース
それが飛行する唯一の方法です。
2017年10月16日更新
私はしばらくしてからこれに戻り、いくつかの改善を行いました。
- 別の名前空間のrakeタスクを追加して、ブランチを作成し、を使用してデータベースを一挙に複製しました
bundle exec rake git:branch
。
- マスターからのクローン作成が必ずしも望んでいることではないことがわかったので、
db:clone_from_branch
タスクがSOURCE_BRANCH
とTARGET_BRANCH
環境変数を受け取ることをより明示的にしました。使用git:branch
すると、現在のブランチがとして自動的に使用されますSOURCE_BRANCH
。
- リファクタリングと簡素化。
config/database.yml
そして、より簡単にするためdatabase.yml
に、現在のブランチに基づいてデータベース名を動的に決定するようにファイルを更新する方法を次に示します。
<%
database_prefix = 'your_app_name'
environments = %W( development test )
current_branch = `git status | head -1`.to_s.gsub('On branch ','').chomp
%>
defaults: &defaults
pool: 5
adapter: mysql2
encoding: utf8
reconnect: false
username: root
password:
host: localhost
<% environments.each do |environment| %>
<%= environment %>:
<<: *defaults
database: <%= [ database_prefix, current_branch, environment ].join('_') %>
<% end %>
lib/tasks/db.rake
これは、あるブランチから別のブランチにデータベースを簡単に複製するためのRakeタスクです。これはSOURCE_BRANCH
およびTARGET_BRANCH
環境変数を取ります。@spalladinoのタスクに基づいています。
namespace :db do
desc "Clones database from another branch as specified by `SOURCE_BRANCH` and `TARGET_BRANCH` env params."
task :clone_from_branch do
abort "You need to provide a SOURCE_BRANCH to clone from as an environment variable." if ENV['SOURCE_BRANCH'].blank?
abort "You need to provide a TARGET_BRANCH to clone to as an environment variable." if ENV['TARGET_BRANCH'].blank?
database_configuration = Rails.configuration.database_configuration[Rails.env]
current_database_name = database_configuration["database"]
source_db = current_database_name.sub(CURRENT_BRANCH, ENV['SOURCE_BRANCH'])
target_db = current_database_name.sub(CURRENT_BRANCH, ENV['TARGET_BRANCH'])
mysql_opts = "-u #{database_configuration['username']} "
mysql_opts << "--password=\"#{database_configuration['password']}\" " if database_configuration['password'].presence
`mysqlshow #{mysql_opts} | grep "#{source_db}"`
raise "Source database #{source_db} not found" if $?.to_i != 0
`mysqlshow #{mysql_opts} | grep "#{target_db}"`
raise "Target database #{target_db} already exists" if $?.to_i == 0
puts "Creating empty database #{target_db}"
`mysql #{mysql_opts} -e "CREATE DATABASE #{target_db}"`
puts "Copying #{source_db} into #{target_db}"
`mysqldump #{mysql_opts} #{source_db} | mysql #{mysql_opts} #{target_db}`
end
end
lib/tasks/git.rake
このタスクは、現在のブランチ(マスターなど)からgitブランチを作成し、それをチェックアウトして、現在のブランチのデータベースを新しいブランチのデータベースに複製します。滑らかなAFです。
namespace :git do
desc "Create a branch off the current branch and clone the current branch's database."
task :branch do
print 'New Branch Name: '
new_branch_name = STDIN.gets.strip
CURRENT_BRANCH = `git status | head -1`.to_s.gsub('On branch ','').chomp
say "Creating new branch and checking it out..."
sh "git co -b #{new_branch_name}"
say "Cloning database from #{CURRENT_BRANCH}..."
ENV['SOURCE_BRANCH'] = CURRENT_BRANCH # Set source to be the current branch for clone_from_branch task.
ENV['TARGET_BRANCH'] = new_branch_name
Rake::Task['db:clone_from_branch'].invoke
say "All done!"
end
end
これで、実行する必要があるのは、run bundle exec git:branch
、新しいブランチ名を入力して、ゾンビの殺害を開始することだけです。