Compare commits

...

2 commits

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 = 'jol.fly.dev' PHX_HOST = 'jess.canady.tech'
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 = "5s" grace_period = "30s"
[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>
<time><%= @post.date %></time> by <%= @post.author %> <date><%= JOL.Blog.format_date(@post.date) %></date>
</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>