有没有办法阻止 rails 在生产环境中预编译资产?
Is there a way to prevent rails to precompile assets on production?
我的项目中有很多资产。服务器中的预编译任务非常缓慢并且耗尽主机(CPU 利用率 100%,平均延迟高)。
我的想法是预编译本地主机中的所有资产并将所有已预编译的文件发送到 GIT(master)。
在部署操作(cap production deploy
)中,避免预编译任务,在服务器中,阻止任何预编译任务。
服务器使用通过 capistrano
发送的已经预编译的文件,在 GIT.
中可用
可能吗?如果是,怎么办?
如果不是,还有另一种解决方案来避免服务器预编译资产吗?
低于我的配置:
Gemfile
gem 'capistrano-rails', group: :development
gem 'capistrano-faster-assets', '~> 1.0', group: :development
Capfile
require 'capistrano/setup'
require 'capistrano/deploy'
require 'capistrano/rails'
require 'capistrano/faster_assets'
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
config/environments/production.rb
config.assets.js_compressor = :uglifier
config.assets.css_compressor = :sass
config.assets.compile = true
config.assets.digest = true
other assets configs in this file is commented
环境信息
OS: Ubuntu 14.04.2 LTS (GNU/Linux 3.13.0-48-generic x86_64)
ruby -v: ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]
rails -v: 4.2.3
nginx -v: nginx/1.8.0
passenger -v: 5.0.10
如果您需要更多信息,请在评论中告诉我。
简答:
替换
require 'capistrano/rails'
和
require 'capistrano/rails/migrations'
require 'capistrano/bundler'
为什么这有效:
当您需要 capistrano/rails
时,您实际上包括以下 (source):
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
这些中的每一个都可以单独包含以获取这些功能。根据文档:https://github.com/capistrano/rails#usage
我的项目中有很多资产。服务器中的预编译任务非常缓慢并且耗尽主机(CPU 利用率 100%,平均延迟高)。
我的想法是预编译本地主机中的所有资产并将所有已预编译的文件发送到 GIT(master)。
在部署操作(cap production deploy
)中,避免预编译任务,在服务器中,阻止任何预编译任务。
服务器使用通过 capistrano
发送的已经预编译的文件,在 GIT.
可能吗?如果是,怎么办? 如果不是,还有另一种解决方案来避免服务器预编译资产吗?
低于我的配置:
Gemfile
gem 'capistrano-rails', group: :development
gem 'capistrano-faster-assets', '~> 1.0', group: :development
Capfile
require 'capistrano/setup'
require 'capistrano/deploy'
require 'capistrano/rails'
require 'capistrano/faster_assets'
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
config/environments/production.rb
config.assets.js_compressor = :uglifier
config.assets.css_compressor = :sass
config.assets.compile = true
config.assets.digest = true
other assets configs in this file is commented
环境信息
OS: Ubuntu 14.04.2 LTS (GNU/Linux 3.13.0-48-generic x86_64)
ruby -v: ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]
rails -v: 4.2.3
nginx -v: nginx/1.8.0
passenger -v: 5.0.10
如果您需要更多信息,请在评论中告诉我。
简答:
替换
require 'capistrano/rails'
和
require 'capistrano/rails/migrations'
require 'capistrano/bundler'
为什么这有效:
当您需要 capistrano/rails
时,您实际上包括以下 (source):
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
这些中的每一个都可以单独包含以获取这些功能。根据文档:https://github.com/capistrano/rails#usage