Improved seeds for development env

This commit is contained in:
Dmitriy Zaporozhets 2012-11-13 22:11:56 +02:00
parent f0a6fbaae3
commit a85e11fa51
7 changed files with 105 additions and 77 deletions

View file

@ -0,0 +1,27 @@
root = Gitlab.config.git_base_path
projects = [
{ path: 'underscore.git', git: 'https://github.com/documentcloud/underscore.git' },
{ path: 'diaspora.git', git: 'https://github.com/diaspora/diaspora.git' },
{ path: 'rails.git', git: 'https://github.com/rails/rails.git' },
]
projects.each do |project|
project_path = File.join(root, project[:path])
next if File.exists?(project_path)
cmds = [
"cd #{root} && sudo -u git -H git clone --bare #{project[:git]}",
"sudo cp ./lib/hooks/post-receive #{project_path}/hooks/post-receive",
"sudo chown git:git #{project_path}/hooks/post-receive"
]
cmds.each do |cmd|
puts cmd.yellow
`#{cmd}`
end
end
puts "OK".green