forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added profile environment for perftools profiling (1.9.3 only)
- Loading branch information
1 parent
45c4382
commit 22a4580
Showing
8 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
Discourse::Application.configure do | ||
# Settings specified here will take precedence over those in config/application.rb | ||
|
||
# Code is not reloaded between requests | ||
config.cache_classes = true | ||
|
||
# Full error reports are disabled and caching is turned on | ||
config.consider_all_requests_local = false | ||
config.action_controller.perform_caching = true | ||
|
||
# in profile mode we serve static assets | ||
config.serve_static_assets = true | ||
|
||
# Compress JavaScripts and CSS | ||
config.assets.compress = true | ||
|
||
# stuff should be pre-compiled, allow compilation to make life easier | ||
config.assets.compile = true | ||
|
||
# Generate digests for assets URLs | ||
config.assets.digest = true | ||
|
||
# Specifies the header that your server uses for sending files | ||
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx | ||
|
||
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to | ||
# the I18n.default_locale when a translation can not be found) | ||
config.i18n.fallbacks = true | ||
|
||
config.action_mailer.delivery_method = :sendmail | ||
config.action_mailer.sendmail_settings = {arguments: '-i'} | ||
|
||
# Send deprecation notices to registered listeners | ||
config.active_support.deprecation = :notify | ||
|
||
# I dunno ... perhaps the built-in minifier is using closure | ||
# regardless it is blowing up | ||
config.ember.variant = :development | ||
config.ember.ember_location = "#{Rails.root}/app/assets/javascripts/external_production/ember.js" | ||
config.ember.handlebars_location = "#{Rails.root}/app/assets/javascripts/external/handlebars-1.0.rc.3.js" | ||
config.handlebars.precompile = true | ||
|
||
config.middleware.use ::Rack::PerftoolsProfiler, :default_printer => 'gif' | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ defaults: &defaults | |
development: | ||
<<: *defaults | ||
|
||
profile: | ||
<<: *defaults | ||
|
||
test: | ||
<<: *defaults | ||
db: 1 | ||
|