Fix for using APPLICATION_NAME in .env file

Refs: #5450
This commit is contained in:
Fabrice Gangler 2020-08-06 09:55:37 +02:00 committed by Fabrice Gangler
parent e1af27984f
commit 60d6b1909d

View file

@ -1,13 +1,13 @@
require File.expand_path('boot', __dir__)
require 'rails/all'
require_relative 'application_name'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
Dotenv::Railtie.load
require_relative 'application_name'
module TPS
class Application < Rails::Application