debian-mirror-gitlab/lib/tasks/gitlab/setup.rake

26 lines
634 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
namespace :gitlab do
2015-09-11 14:41:01 +05:30
desc "GitLab | Setup production application"
2014-09-02 18:07:02 +05:30
task setup: :environment do
setup_db
end
def setup_db
warn_user_is_not_gitlab
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
Rake::Task["db:setup"].invoke
Rake::Task["add_limits_mysql"].invoke
2015-10-24 18:46:33 +05:30
Rake::Task["setup_postgresql"].invoke
2014-09-02 18:07:02 +05:30
Rake::Task["db:seed_fu"].invoke
rescue Gitlab::TaskAbortedByUserError
puts "Quitting...".red
exit 1
end
end