2

我是 Sinatra 和 heroku 的新手。我正在尝试将一个小型 Sinatra 应用程序推送到 heroku,但出现此错误,

 Bundle completed (24.34s)
   Cleaning up the bundler cache.
-----> WARNINGS:
       No Procfile detected, using the default web server (webrick)
       ##I have gone over the docs a few times and added unicorn 
       https://devcenter.heroku.com/articles/ruby-default-web-server
-----> Discovering process types
       Procfile declares types -> (none)
       Default types for Ruby  -> console, rake, web

-----> Compressing... done, 17.5MB
-----> Launching... done, v8

这就是我的 gem 文件的样子

   source 'https://rubygems.org'
   ruby '2.1.1'
   gem 'sinatra'
   gem 'sinatra-contrib'
   gem 'typhoeus'
   gem 'pry'
   gem 'rspec'
   gem 'pg'
   gem 'unicorn'
   gem 'thin', '1.2.7'

我已经尝试了很多我在网上看到的东西,但仍然出现此错误。对不起,如果这是一个愚蠢的问题,但它让我发疯!如果您想在应用程序中查看更多文件,我会很乐意添加它们,我只是不确定要添加哪些文件..

感谢您的宝贵时间,感谢您的帮助。

4

1 回答 1

6

Procfile告诉 Heroku 您的应用程序可以运行的不同进程类型(命令)。对于 Ruby 应用程序,Heroku 希望您声明至少一种web进程类型,并且默认情况下还会自动启动两个额外的进程:rakeconsole.

这意味着您的 Ruby 应用程序应该能够运行 Web 进程(这是实际为网页和资产提供服务的进程)、运行rake任务并为您提供类似 shell 的控制台(通过heroku run console在你的应用程序)。

您需要做的就是添加一个名为的空白文本文件Procfile到您的应用程序的顶级文件夹,只需一行代码(如果您使用的是 Rack):

web: bundle exec rackup config.ru -p $PORT

或者,如果您使用的是纯 Sinatra(没有 Rack):

web: bundle exec ruby web.rb -p $PORT

您真的应该阅读Heroku 开发中心中的Define a ProcfileThe Procfile以消除任何混淆。

于 2014-06-14T19:57:14.723 回答