Mercurial > zeropaste
annotate config/environments/development.rb @ 448:b5c71a54613b
Update source url
author | nanaya <me@nanaya.pro> |
---|---|
date | Thu, 15 Jun 2017 16:23:20 +0900 |
parents | d31fe32da7a0 |
children | 07d6c6639adf |
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 |
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
12 # Show full error reports and disable caching. |
431 | 13 config.consider_all_requests_local = true |
14 # Enable/disable caching. By default caching is disabled. | |
15 if Rails.root.join("tmp/caching-dev.txt").exist? | |
16 config.action_controller.perform_caching = false | |
17 | |
18 config.cache_store = :memory_store | |
19 config.public_file_server.headers = { | |
20 "Cache-Control" => "public, max-age=172800" | |
21 } | |
22 else | |
23 config.action_controller.perform_caching = false | |
24 | |
25 config.cache_store = :null_store | |
26 end | |
0 | 27 |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
28 # Don't care if the mailer can't send. |
205 | 29 # config.action_mailer.raise_delivery_errors = false |
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 |
202
d4cf49db9c49
...copypasta the whole environments from clean 4.0
Edho Arief <edho@myconan.net>
parents:
201
diff
changeset
|
37 # 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
|
38 # 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
|
39 # number of complex assets. |
0 | 40 config.assets.debug = true |
431 | 41 |
42 # Raises error for missing translations. | |
43 config.action_view.raise_on_missing_translations = true | |
44 | |
437 | 45 # Suppress logger output for asset requests. |
46 config.assets.quiet = true | |
47 | |
431 | 48 # Use an evented file watcher to asynchronously detect changes in source code |
49 # routes, locales, etc. This feature depends on the listen gem. | |
50 # config.file_watcher = ActiveSupport::EventedFileUpdateChecker | |
0 | 51 end |