gitlab-org--gitlab-foss/lib/tasks/gitlab/setup.rake

22 lines
498 B
Ruby
Raw Normal View History

2012-04-03 18:02:54 -04:00
namespace :gitlab do
desc "GITLAB | Setup production application"
task :setup => :environment do
setup
end
2013-01-17 15:19:36 -05:00
def setup
warn_user_is_not_gitlab
2013-01-17 15:19:36 -05:00
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 ""
2013-01-17 15:19:36 -05:00
Rake::Task["db:setup"].invoke
Rake::Task["db:seed_fu"].invoke
rescue Gitlab::TaskAbortedByUserError
puts "Quitting...".red
exit 1
2012-04-03 18:02:54 -04:00
end
end