72 lines
2.5 KiB
Ruby
72 lines
2.5 KiB
Ruby
require_relative 'boot'
|
|
# require 'rails/all'
|
|
|
|
require "active_model/railtie"
|
|
require "action_controller/railtie"
|
|
require "action_mailer/railtie"
|
|
require "action_view/railtie"
|
|
require "active_job/railtie" # Only for Rails >= 4.2
|
|
require "action_cable/engine" # Only for Rails >= 5.0
|
|
require "sprockets/railtie"
|
|
require "rails/test_unit/railtie"
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
# you've limited to :test, :development, or :production.
|
|
Bundler.require(*Rails.groups)
|
|
|
|
module Neeto
|
|
class Application < Rails::Application
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
# Application configuration should go into files in config/initializers
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
# config.i18n.default_locale = :de
|
|
|
|
# Do not swallow errors in after_commit/after_rollback callbacks.
|
|
# config.active_record.raise_in_transactional_callbacks = true
|
|
|
|
# Cross-Origin Resource Sharing (CORS) for Rack compatible web applications.
|
|
config.middleware.insert_before 0, "Rack::Cors" do
|
|
allow do
|
|
origins '*'
|
|
resource '*', :headers => :any, :methods => [:get, :post, :put, :patch, :delete, :options], :expose => ['Access-Token', 'Client', 'UID']
|
|
end
|
|
end
|
|
|
|
# config.middleware.use Rack::Deflater
|
|
|
|
config.middleware.insert_before(Rack::Sendfile, Rack::Deflater)
|
|
|
|
# Disable auto creation of additional resources with "rails generate"
|
|
config.generators do |g|
|
|
g.test_framework false
|
|
g.view_specs false
|
|
g.helper_specs false
|
|
g.stylesheets = false
|
|
g.javascripts = false
|
|
g.helper = false
|
|
end
|
|
|
|
config.action_mailer.default_url_options = { host: ENV['APP_HOST'] }
|
|
|
|
# SMTP settings
|
|
config.action_mailer.delivery_method = :smtp
|
|
config.action_mailer.smtp_settings = {
|
|
:address => ENV['SMTP_HOST'],
|
|
:port => ENV['SMTP_PORT'],
|
|
:domain => ENV['SMTP_DOMAIN'],
|
|
:user_name => ENV['SMTP_USERNAME'],
|
|
:password => ENV['SMTP_PASSWORD'],
|
|
:authentication => 'login',
|
|
:enable_starttls_auto => true # detects and uses STARTTLS
|
|
}
|
|
|
|
end
|
|
end
|