각 지점에 대한 별도의 데이터베이스
비행하는 유일한 방법입니다.
2017 년 10 월 16 일 업데이트
꽤 오랜 시간이 지나서 이것으로 돌아와서 약간의 개선을했습니다.
- 와 함께 네임 스페이스 레이크 작업을 추가하여 지점을 만들고 데이터베이스를 한 번에 복제했습니다
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
다음은 한 지점에서 다른 지점으로 데이터베이스를 쉽게 복제하는 레이크 작업입니다. 이것은 소요 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
, 새로운 브랜치 이름을 입력하고 좀비를 죽이기 시작합니다.