Merge pull request #5452 from adullact/5450_fix_for-using-APPLICATION_NAME-in-ENV-file
#5450 - Fix for using APPLICATION_NAME in .env file
This commit is contained in:
commit
e805529d5c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue