-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.exs
More file actions
29 lines (21 loc) · 674 Bytes
/
Copy pathdev.exs
File metadata and controls
29 lines (21 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Config
config :dps, DPSWeb.Endpoint,
http: [ip: {127, 0, 0, 1}, port: 4000],
check_origin: false,
code_reloader: false,
debug_errors: true,
secret_key_base: "/C2+I8FuGmAHq+MfX1wGFmmBhDavp6xhBDD7W2rx1vzSYVWjsc+Qow54KOp+Z2eL",
watchers: []
{:ok, hostname} = :inet.gethostname()
config :dps, DPS.TopicServer, nodes: ["dps-ts-a@#{hostname}", "dps-ts-b@#{hostname}"]
config :libcluster,
# debug: true,
topologies: [
gossip: [
strategy: Cluster.Strategy.Gossip
]
]
config :dps, dev_routes: true
config :logger, :console, format: "[$level] $message\n"
config :phoenix, :stacktrace_depth, 20
config :phoenix, :plug_init_mode, :runtime