Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.rake « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 572a22aa1f6028f1add82ee6b230cc3dd1fadc85 (plain)
1
2
3
4
5
6
7
8
9
10
namespace :gitlab do
  namespace :app do
    desc "GITLAB | Setup production application"
    task :setup => [
      'db:setup',
      'db:seed_fu',
      'gitlab:enable_automerge'
    ]
  end
end