Compare commits

..

No commits in common. "6fc8af3b2805b9ae66ef6c3bcb77d58de6ef8257" and "d3960c0746b559d63bb89b0bce4f36eb449a7615" have entirely different histories.

2 changed files with 7 additions and 7 deletions

View file

@ -13,7 +13,7 @@ kill_signal = 'SIGTERM'
release_command = '/app/bin/migrate' release_command = '/app/bin/migrate'
[env] [env]
PHX_HOST = 'jess.canady.tech' PHX_HOST = 'jol.fly.dev'
PORT = '8080' PORT = '8080'
[http_service] [http_service]
@ -26,7 +26,7 @@ processes = ['app']
[[http_service.checks]] [[http_service.checks]]
timeout = "30s" timeout = "30s"
grace_period = "30s" grace_period = "5s"
[http_service.concurrency] [http_service.concurrency]
type = 'connections' type = 'connections'

View file

@ -3,11 +3,11 @@
<h1><%= @post.title %></h1> <h1><%= @post.title %></h1>
<p> <p>
<date><%= JOL.Blog.format_date(@post.date) %></date> <time><%= @post.date %></time> by <%= @post.author %>
</p>
<p>
Tagged as <%= Enum.join(@post.tags, ", ") %>
</p> </p>
<%= raw @post.body %> <%= raw @post.body %>
<p class="post-tags">
Filed under: <%= Enum.join(@post.tags, ", ") %>
</p>