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

gitlab-backup-cli « bin - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4037684be07d6561b63c433d1e41885f91b88c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env ruby
# frozen_string_literal: true

$:.unshift File.expand_path("../../lib", __FILE__)

# We require APP_PATH when the rails environment is required only,
# this allows for faster CLI execution when rails is not needed
APP_PATH = File.expand_path('../config/application', __dir__)

require_relative '../config/boot'

require 'gitlab/backup/cli'

Gitlab::Backup::Cli::Runner.start(ARGV)