mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
960aab7aca
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!
|