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