Mercurial > zeropaste
annotate config/environments/development.rb @ 468:802dcd44188e
Now with webpacker
author | nanaya <me@nanaya.pro> |
---|---|
date | Sun, 23 Feb 2020 20:23:09 +0900 |
parents | fd3078b4d355 |
children | 88fd5722fcb3 |
rev | line source |
---|---|
431 | 1 Rails.application.configure do |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
2 # Settings specified here will take precedence over those in config/application.rb. |
0 | 3 |
4 # In the development environment your application's code is reloaded on | |
5 # every request. This slows down response time but is perfect for development | |
6 # since you don't have to restart the web server when you make code changes. | |
7 config.cache_classes = false | |
8 | |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
9 # Do not eager load code on boot. |
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
10 config.eager_load = false |
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
11 |
459
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
12 # Show full error reports. |
431 | 13 config.consider_all_requests_local = true |
459
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
14 |
431 | 15 # Enable/disable caching. By default caching is disabled. |
459
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
16 # Run rails dev:cache to toggle caching. |
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
17 if Rails.root.join('tmp', 'caching-dev.txt').exist? |
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
18 config.action_controller.perform_caching = true |
467 | 19 config.action_controller.enable_fragment_cache_logging = true |
431 | 20 |
21 config.cache_store = :memory_store | |
22 config.public_file_server.headers = { | |
459
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
23 'Cache-Control' => "public, max-age=#{2.days.to_i}" |
431 | 24 } |
25 else | |
26 config.action_controller.perform_caching = false | |
27 | |
28 config.cache_store = :null_store | |
29 end | |
0 | 30 |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
31 # Print deprecation notices to the Rails logger. |
0 | 32 config.active_support.deprecation = :log |
33 | |
431 | 34 # Raise an error on page load if there are pending migrations. |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
35 config.active_record.migration_error = :page_load |
0 | 36 |
459
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
37 # Highlight code that triggered database queries in logs. |
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
38 config.active_record.verbose_query_logs = true |
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
39 |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
40 # Debug mode disables concatenation and preprocessing of assets. |
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
41 # This option may cause significant delays in view rendering with a large |
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
42 # number of complex assets. |
0 | 43 config.assets.debug = true |
431 | 44 |
437 | 45 # Suppress logger output for asset requests. |
46 config.assets.quiet = true | |
47 | |
467 | 48 # Raises error for missing translations. |
459
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
49 # config.action_view.raise_on_missing_translations = true |
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
50 |
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
nanaya <me@nanaya.pro>
parents:
437
diff
changeset
|
51 # Use an evented file watcher to asynchronously detect changes in source code, |
431 | 52 # routes, locales, etc. This feature depends on the listen gem. |
53 # config.file_watcher = ActiveSupport::EventedFileUpdateChecker | |
0 | 54 end |