2012-04-03 18:02:54 -04:00
|
|
|
namespace :gitlab do
|
2015-06-23 10:52:40 -04:00
|
|
|
desc "GitLab | Setup production application"
|
2013-05-05 10:01:10 -04:00
|
|
|
task setup: :environment do
|
2013-02-14 16:39:48 -05:00
|
|
|
setup_db
|
2013-01-17 15:26:22 -05:00
|
|
|
end
|
2013-01-17 15:19:36 -05:00
|
|
|
|
2013-02-14 16:39:48 -05:00
|
|
|
def setup_db
|
2013-01-17 15:26:22 -05:00
|
|
|
warn_user_is_not_gitlab
|
2013-01-17 15:19:36 -05:00
|
|
|
|
2013-02-19 22:44:03 -05: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 15:19:36 -05:00
|
|
|
|
2013-01-17 15:26:22 -05:00
|
|
|
Rake::Task["db:setup"].invoke
|
2014-04-16 05:26:02 -04:00
|
|
|
Rake::Task["add_limits_mysql"].invoke
|
2015-10-07 11:42:47 -04:00
|
|
|
Rake::Task["setup_postgresql"].invoke
|
2013-01-17 15:26:22 -05:00
|
|
|
Rake::Task["db:seed_fu"].invoke
|
|
|
|
rescue Gitlab::TaskAbortedByUserError
|
|
|
|
puts "Quitting...".red
|
|
|
|
exit 1
|
2012-04-03 18:02:54 -04:00
|
|
|
end
|
|
|
|
end
|