gitlabhq/lib/tasks/gitlab/setup.rake
2013-01-17 21:26:22 +01:00

23 lines
547 B
Ruby

namespace :gitlab do
desc "GITLAB | Setup production application"
task :setup => :environment do
setup
end
def setup
warn_user_is_not_gitlab
puts "This will create the necessary database tables and seed the database."
puts "You will lose any previous data stored in the database."
ask_to_continue
puts ""
Rake::Task["db:setup"].invoke
Rake::Task["db:seed_fu"].invoke
Rake::Task["gitlab:enable_automerge"].invoke
rescue Gitlab::TaskAbortedByUserError
puts "Quitting...".red
exit 1
end
end