我收到“Heroku 推送被拒绝,未检测到 Rails 或 Rack 应用程序”的消息Sinatra 应用程序出现错误

发布于 2024-11-29 16:28:17 字数 211 浏览 1 评论 0原文

我在这里使用了示例 hello world 应用程序:

http://devcenter.heroku.com/articles/rack

并收到错误“Heroku 推送被拒绝,未检测到 Rails 或 Rack 应用程序” 帮助?

I used the example hello world app here:

http://devcenter.heroku.com/articles/rack

And get the error "Heroku push rejected, no Rails or Rack app detected"
Help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

云胡 2024-12-06 16:28:17

您缺少 config.ru 文件。您想要做的是创建一个如下所示的文件:(它应该位于您的存储库的根目录中)

# config.ru
require './your/app/file'

run MyApp

...其中 MyApp 是您的 Sinatra 应用程序的类。

确保您的应用程序文件不会在 require 时尝试启动 (MyApp.run!) 您的应用程序:

# your_app_file.rb

class MyApp < Sinatra::Base
  ...
end

# Only run it when called as `ruby your_app_file.rb`
MyApp.run!  if $0 == __FILE__

You are missing a config.ru file. What you want to do is to create a file that looks like this: (it should be in the root of your repo)

# config.ru
require './your/app/file'

run MyApp

...where MyApp is your Sinatra app's class.

Be sure that your app file will not try to start (MyApp.run!) your app when require'd:

# your_app_file.rb

class MyApp < Sinatra::Base
  ...
end

# Only run it when called as `ruby your_app_file.rb`
MyApp.run!  if $0 == __FILE__
荭秂 2024-12-06 16:28:17

确保您的 Gemfile 中有这些行

source 'http://rubygems.org'
gem 'sinatra'

然后:

bundle 

然后:

git push heroku master

Make sure you have these lines in your Gemfile

source 'http://rubygems.org'
gem 'sinatra'

Then:

bundle 

Then:

git push heroku master
深海夜未眠 2024-12-06 16:28:17

这发生在我身上。原来是因为我在myproject/myapp/中初始化了Git仓库。 Heroku 需要 Git 存储库位于 myapp/ 中。我删除了 myproject/ 中的 .git 文件夹(从而删除了该存储库)并运行

cd myapp
git init

之后,效果很好。

This happened to me. It turned out it was because I initialized the Git repository in myproject/myapp/. Heroku needs the Git repository to be in myapp/. I deleted the .git folder in myproject/ (thus deleting that repository) and ran

cd myapp
git init

After that, it worked great.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文