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: 08f35c7e3f04d0d0f57a5495289dbc7d70fb0e90 (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:app:enable_automerge'
    ]
  end
end