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

boot.rb « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b3f2935e3f900eab6d500b9e046e2e52132bc8c (plain)
1
2
3
4
5
6
# frozen_string_literal: true

require_relative 'bundler_setup'

enable_bootsnap_default_value = ENV['RAILS_ENV'] != 'production' ? '1' : '0'
require 'bootsnap/setup' if %w[1 yes true].include?(ENV.fetch('ENABLE_BOOTSNAP', enable_bootsnap_default_value))