Heroku不工作,我不知道从哪里开始

时间:2018-01-16 04:58:19

标签: ruby-on-rails ruby heroku

我为这是一个模糊的问题而道歉,但我不知道出了什么问题,所以我不知道如何提问。

我设置了一个rails应用程序,它在本地工作。但是,在Heroku Create上创建它并在Heroku服务器上设置它时它不起作用。当我打开Heroku打开时,我得到这个页面:

https://polar-taiga-65467.herokuapp.com/

我可以发布日志或其他任何内容来提供帮助。如果有人可以帮我弄清楚从这里做什么,我们将不胜感激。

这是我的GitHub项目:https://github.com/TomTom319/morali-tee

以下是Heroku的日志:

2018-01-16T05:13:18.292500+00:00 app[web.1]: I,
[2018-01-16T05:13:18.292411 #4]  INFO -- :
[99bf3dd0-59b3-4438-a3f7-36a037174b55]   Rendering simple_pages/index.html.erb within layouts/application
2018-01-16T05:13:18.295106+00:00 app[web.1]:
[99bf3dd0-59b3-4438-a3f7-36a037174b55]     3:  2018-01-16T05:13:18.293930+00:00 app[web.1]: I,
[2018-01-16T05:13:18.293863 #4]  INFO -- :
[99bf3dd0-59b3-4438-a3f7-36a037174b55]   Rendered simple_pages/index.html.erb within layouts/application (1.3ms)
2018-01-16T05:13:18.294179+00:00 app[web.1]: I,
[2018-01-16T05:13:18.294089 #4]  INFO -- :
[99bf3dd0-59b3-4438-a3f7-36a037174b55] Completed 500 Internal Server Error in 15ms 2018-01-16T05:13:18.294881+00:00 app[web.1]: F,
[2018-01-16T05:13:18.294798 #4] FATAL -- :
[99bf3dd0-59b3-4438-a3f7-36a037174b55]    2018-01-16T05:13:18.295107+00:00 app[web.1]:
[99bf3dd0-59b3-4438-a3f7-36a037174b55]     4: <%= image_tag("yellowtee", class: "img-responsive first-tee")%>
2018-01-16T05:13:18.295101+00:00 app[web.1]: F,
[2018-01-16T05:13:18.295028 #4] FATAL -- :
[99bf3dd0-59b3-4438-a3f7-36a037174b55]     1: <h1 style="color:red;">MoraliTee</h1> 2018-01-16T05:13:18.295104+00:00
app[web.1]: [99bf3dd0-59b3-4438-a3f7-36a037174b55]     2: <p>Welcome! We are on a mission to give back to people around the world</p>
2018-01-16T05:13:18.295158+00:00 app[web.1]: F,
[2018-01-16T05:13:18.295086 #4] FATAL -- :
[99bf3dd0-59b3-4438-a3f7-36a037174b55]    2018-01-16T05:13:18.760114+00:00 heroku[router]: at=info method=GET
path="/favicon.ico" host=polar-taiga-65467.herokuapp.com
request_id=6a2ec4b7-7054-46b7-b76a-28ef5ab3f69a fwd="24.15.217.85"
dyno=web.1 connect=0ms service=2ms status=200 bytes=143 protocol=https
2018-01-16T05:13:18.293286+00:00 heroku[router]: at=info method=GET
path="/" host=polar-taiga-65467.herokuapp.com
request_id=99bf3dd0-59b3-4438-a3f7-36a037174b55 fwd="24.15.217.85" dyno=web.1 connect=0ms service=22ms status=500 bytes=1827
protocol=https
下面的

Simple_pages/index.html.erb代码:

<h1 style="color:red;">MoraliTee</h1>
<p>Welcome! We are on a mission to give back to people around the 
world</p>

<%= image_tag("yellowtee", class: "img-responsive first-tee")%>

1 个答案:

答案 0 :(得分:1)

我的simple_pages / index.html.erb页面上的图片末尾缺少文件类型。我需要在我的image_tag中将.jpg放到源代码的末尾。

感谢@mmichael帮助您找出问题所在。

我认为我的数据库出了问题,但我错了。谢谢你的帮助。