坏资产Heroku链接

时间:2013-09-27 16:44:19

标签: css ruby-on-rails heroku asset-pipeline

我遇到了Heroku的问题,当我尝试部署我的应用程序时,它没有运行run assets:precompile而且我没有在本地预编译我的资产,我没有在Git中使用de manifest文件。

我的应用程序正在使用雪松,我跑了     heroku stack

结果是
    bamboo-mri-1.9.2
bamboo-ree-1.8.7
* cedar

在我部署的应用程序中,我在Heroku中<link href="/stylesheets/application.css" media="all" rel="stylesheet" type="text/css" /> <link href="/assets/application.css" media="all" rel="stylesheet" type="text/css" />。在本地,当我在命令提示符下运行rails s时,资产很好。

我的应用程序是在Ruby on Rails中完成的。我的config / application.rb

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

# Pick the frameworks you want:
# require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
#require "sprockets/railtie"
require "rails/test_unit/railtie"

if defined?(Bundler)
  # If you precompile assets before deploying to production, use this line
  Bundler.require(*Rails.groups(:assets => %w(development test)))
  # If you want your assets lazily compiled in production, use this line
  # Bundler.require(:default, :assets, Rails.env)
end

module Mongoapp
  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.

    # Custom directories with classes and modules you want to be autoloadable.
    # config.autoload_paths += %W(#{config.root}/extras)

    # Only load the plugins named here, in the order given (default is alphabetical).
    # :all can be used as a placeholder for all plugins not explicitly named.
    # config.plugins = [ :exception_notification, :ssl_requirement, :all ]

    # Activate observers that should always be running.
    # config.active_record.observers = :cacher, :garbage_collector, :forum_observer

    # 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

    # Configure the default encoding used in templates for Ruby 1.9.
    config.encoding = "utf-8"
     config.time_zone = 'Bogota'


    # Configure sensitive parameters which will be filtered from the log file.
    config.filter_parameters += [:password]

    # Enable escaping HTML in JSON.
    config.active_support.escape_html_entities_in_json = true

    # Use SQL instead of Active Record's schema dumper when creating the database.
    # This is necessary if your schema can't be completely dumped by the schema dumper,
    # like if you have constraints or database-specific column types
    # config.active_record.schema_format = :sql

    # Enforce whitelist mode for mass assignment.
    # This will create an empty whitelist of attributes available for mass-assignment for all models
    # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
    # parameters by using an attr_accessible or attr_protected declaration.
    # config.active_record.whitelist_attributes = true

    # Enable the asset pipeline
    config.assets.enabled = true


    # Version of your assets, change this if you want to expire all your assets
    config.assets.version = '1.0'
  end
end

我的application.html.erb

    <!DOCTYPE html>
<html lang="es" xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#">
<head>

  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="">
  <meta name="author" content="">
  <%= stylesheet_link_tag    "application", :media => "all" %>
  <%= javascript_include_tag "application" %>
  <%= csrf_meta_tags %>
  <%= display_meta_tags%>
  <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
  <!--[if lt IE 9]>
  <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->
  <!-- fav and touch icons -->
  <link rel="shortcut icon" href="assets/ico/favicon.ico">
  <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">  
  <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
  <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
  <link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
</head>
<%=render "layouts/header"%>
<body>
<% flash.each do |key,value|%>
    <%if key==:notice%>
      <%key=:info%>
    <%end%>
  <%if key==:alert%>
      <%key=:error%>
    <%end%>
    <div class="alert alert-<%= key %>" id="flash_<%=key%>">
      <div class="container"><%= value %>
    <button type="button" class="close" data-dismiss="alert" onclick="document.getElementById('flash_<%=key%>').style.display='none';">×</button>
    </div>
    </div>
<% end %>
<%= yield %>
</body>
<%=render "layouts/footer"%>
</html>

我的环境/ production.rb

Mongoapp::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

  # Disable Rails's static asset server (Apache or nginx will already do this)
  config.serve_static_assets = false

  # Compress JavaScripts and CSS
  config.assets.compress = true

  # Don't fallback to assets pipeline if a precompiled asset is missed
  config.assets.compile = false

  # Generate digests for assets URLs
  config.assets.digest = true

  # Defaults to nil and saved in location specified by config.assets.prefix
  # config.assets.manifest = YOUR_PATH

  # Specifies the header that your server uses for sending files
  # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
  # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx

  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
  # config.force_ssl = true

  # See everything in the log (default is :info)
  # config.log_level = :debug

  # Prepend all log lines with the following tags
  # config.log_tags = [ :subdomain, :uuid ]

  # Use a different logger for distributed setups
  # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)

  # Use a different cache store in production
  # config.cache_store = :mem_cache_store

  # Enable serving of images, stylesheets, and JavaScripts from an asset server
  # config.action_controller.asset_host = "http://assets.example.com"

  # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
  # config.assets.precompile += %w( search.js )

  # Disable delivery errors, bad email addresses will be ignored
  # config.action_mailer.raise_delivery_errors = false

  # Enable threaded mode
  # config.threadsafe!

  # 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

  # Send deprecation notices to registered listeners
  config.active_support.deprecation = :notify

  config.action_mailer.default_url_options = { :host => 'inkognitmongo.herokuapp.com' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = false
config.action_mailer.default :charset => "utf-8"
config.action_mailer.smtp_settings = {
  address: "smtp.sendgrid.com",
  port: 587,
  domain: "inkognitmongo.herokuapp.com",
  authentication: "plain",
  enable_starttls_auto: true,
  user_name: ENV["SENDGRID_USERNAME"],
  password: ENV["SENDGRID_PASSWORD"]
}

  config.assets.precompile += %w( application.css bootstrap.js jquery.js jquery.easing.1.3.js raphael-min.js google-code-prettify/prettify.js prettify.js jquery.elastislide.js jquery.tweet.js jquery.prettyPhoto.js jquery.flexslider.js iview.js jquery-hover-effect.js animate.js custom.js .svg .eot .woff .ttf)
end

1 个答案:

答案 0 :(得分:0)

首先,将以下内容添加到application.rb以启用Heroku上的管道预编译:

# config/application.rb
config.assets.initialize_on_precompile = false

然后,在Heroku控制台中(通过从命令行键入heroku run console通过Heroku Toolbelt访问),使用以下命令手动预编译:

bundle exec rake assets:precompile

最后,通过输入heroku restart重启您的应用 - 您的资产管道应该正确预编译。

<强>更新

如果上述解决方案仍未设置正确的路径,则您有一个清单文件,导致默认资产路径被标记帮助程序覆盖。您可以通过从manifest.yml目录中删除public/assets/文件,提交更改,然后重新部署到Heroku来解决此问题。