mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
cd5520b948
Fix rbenv not being able to export to upstart via foreman
10 lines
273 B
Ruby
10 lines
273 B
Ruby
require File.expand_path('../application', __FILE__)
|
|
require 'dotenv'
|
|
require 'verification'
|
|
require 'exceptions'
|
|
require 'extra'
|
|
|
|
Dotenv.load
|
|
ActiveSupport::Deprecation.silenced = true if ['staging', 'production'].include?(ENV['RAILS_ENV'])
|
|
|
|
Ensl::Application.initialize!
|