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