diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
| commit | 0929719a845897cc8567cf972e07a69a71f0fa6f (patch) | |
| tree | 2b6f69c1d906abb6e0abf8a0f1d51725bc78087d /config/application.rb | |
| parent | 01c1947537e4e23ded0c16812a7cd9d49ad88356 (diff) | |
| download | wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.gz wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.bz2 wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.zip | |
Migrate to a full rails app
Diffstat (limited to 'config/application.rb')
| -rw-r--r-- | config/application.rb | 27 |
1 files changed, 27 insertions, 0 deletions
| diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..095566e --- /dev/null +++ b/config/application.rb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | require_relative "boot" | ||
| 2 | |||
| 3 | require "rails/all" | ||
| 4 | |||
| 5 | # Require the gems listed in Gemfile, including any gems | ||
| 6 | # you've limited to :test, :development, or :production. | ||
| 7 | Bundler.require(*Rails.groups) | ||
| 8 | |||
| 9 | module Wittle | ||
| 10 | class Application < Rails::Application | ||
| 11 | # Initialize configuration defaults for originally generated Rails version. | ||
| 12 | config.load_defaults 7.1 | ||
| 13 | |||
| 14 | # Please, add to the `ignore` list any other `lib` subdirectories that do | ||
| 15 | # not contain `.rb` files, or that should not be reloaded or eager loaded. | ||
| 16 | # Common ones are `templates`, `generators`, or `middleware`, for example. | ||
| 17 | config.autoload_lib(ignore: %w(assets tasks)) | ||
| 18 | |||
| 19 | # Configuration for the application, engines, and railties goes here. | ||
| 20 | # | ||
| 21 | # These settings can be overridden in specific environments using the files | ||
| 22 | # in config/environments, which are processed later. | ||
| 23 | # | ||
| 24 | # config.time_zone = "Central Time (US & Canada)" | ||
| 25 | # config.eager_load_paths << Rails.root.join("extras") | ||
| 26 | end | ||
| 27 | end | ||
