parent
f0ace70d9b
commit
bd3cb7ac8e
@ -1,2 +1,2 @@ |
||||
web: mix phx.server |
||||
worker: mix exq.start |
||||
web: bin/start-pgbouncer-stunnel mix phx.server |
||||
worker: bin/start-pgbouncer-stunnel mix exq.start |
||||
|
@ -0,0 +1,4 @@ |
||||
#!/usr/bin/env bash |
||||
# Placeholder for pgbouncer buildpack |
||||
|
||||
$@ |
@ -0,0 +1,5 @@ |
||||
defmodule Explorer.ExqNodeIdentifier do |
||||
@behaviour Exq.NodeIdentifier.Behaviour |
||||
@moduledoc "Configure Exq with the current dyno name" |
||||
def node_id, do: System.get_env("DYNO") |
||||
end |
Loading…
Reference in new issue