gpt4 book ai didi

heroku - 如何在heroku上禁用 Assets 编译?

转载 作者:行者123 更新时间:2023-12-04 22:46:29 26 4
gpt4 key购买 nike

我正在尝试使用此教程将我的 rails 应用程序部署到 heroku:

https://devcenter.heroku.com/articles/getting-started-with-rails4

所以,我使用 rails 4.1.1 和 ruby​​ 2.1.1

我的 Gemfile 有 gem 'rails_12factor', group: :production里面。

我的应用程序.rb:


require File.expand_path('../boot', __FILE__)

require 'rails/all'

Bundler.require(*Rails.groups)

module Charticus
class Application Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.

# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'

# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
end
end


我创建了文件 public/assets/manifest.yml
但是当我将应用程序部署到 heroku 时 - 它会将我所有的 js 文件文件编译为 application.js 和所有 css 文件 application.css。我在 app.heroku.com 上使用 firebug 看不到它。

我需要对我的配置做什么才能在 app.heroku.com 上查看我的所有 js 和 css 文件?
如何在heroku上禁用 Assets 预编译和缩小?

请帮帮我!
谢谢

最佳答案

lib/tasks/assets.rake

Rake::Task["assets:precompile"].clear
namespace :assets do
task 'precompile' do
puts "Not pre-compiling assets..."
end
end

你完成了。

关于heroku - 如何在heroku上禁用 Assets 编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23687972/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com