我是AWS的新手,我刚刚编写并部署了一个小型金字塔应用程序。我遇到了一些问题,但是在我开始工作后,一切似乎都很好。但是,现在,我的部署似乎没有对环境产生影响(我更改了我的根URL路由到的index.pt文件,并且它没有在my-app.elasticbeanstalk.com上注册)。
对于我不知道的部署是否有某种延迟,或者我是如何部署(使用awsebcli软件包eb deploy
)导致我的应用程序的这些更新无法显示?
答案 0 :(得分:1)
您在部署之前是否提交了更改?
<div id="sim_div">
<h1><%= @simulation.identifier %></h1>
<h4 class="offset-col-sm-1">Dimensions: <%= @simulation.x_size %>x<%= @simulation.y_size %></h4>
<h4 class="offset-col-sm-1">Verdict: <%= @simulation.verdict %></h4>
<table class="table table-bordered">
<thead>
<tr>
</tr>
</thead>
<tbody>
<% @simulation.state.each do |row| %>
<tr>
<% row.each do |current| %>
<td class="text-center"><%= current %></td>
<% end%>
</tr>
<% end %>
</tbody>
</table>
<br>
</div>
将部署HEAD提交。
您可以eb deploy
部署分阶段更改。