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: 49c86461c0b3b7ba2249b4bd955efebe9f5d6faa (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace :gitlab do
  namespace :app do
    desc "GITLAB | Setup production application"
    task :setup => [
      'db:setup',
      'db:seed_fu',
      'gitlab:app:enable_automerge' 
    ]
  end
end