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

26 lines
649 B
Ruby
Raw Normal View History

2012-04-03 22:02:54 +00:00
namespace :gitlab do
desc "GitLab | Setup production application"
task setup: :gitlab_environment do
setup_db
end
2013-01-17 20:19:36 +00:00
def setup_db
warn_user_is_not_gitlab
2013-01-17 20:19:36 +00:00
unless ENV['force'] == 'yes'
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 ""
end
2013-01-17 20:19:36 +00:00
Rake::Task["db:reset"].invoke
Rake::Task["add_limits_mysql"].invoke
Rake::Task["setup_postgresql"].invoke
Rake::Task["db:seed_fu"].invoke
rescue Gitlab::TaskAbortedByUserError
2016-06-06 21:17:42 +00:00
puts "Quitting...".color(:red)
exit 1
2012-04-03 22:02:54 +00:00
end
end