From 975ab9e285baf4f1b22b60104db4f8f982c1db8b Mon Sep 17 00:00:00 2001 From: David Gay Date: Wed, 21 Apr 2021 20:59:17 -0400 Subject: New Rails project with pgsql --- config/application.rb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config/application.rb (limited to 'config/application.rb') diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..782ddfd --- /dev/null +++ b/config/application.rb @@ -0,0 +1,22 @@ +require_relative "boot" + +require "rails/all" + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module Esoterra + class Application < Rails::Application + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 6.1 + + # Configuration for the application, engines, and railties goes here. + # + # These settings can be overridden in specific environments using the files + # in config/environments, which are processed later. + # + # config.time_zone = "Central Time (US & Canada)" + # config.eager_load_paths << Rails.root.join("extras") + end +end -- cgit v1.2.3