this repo has no description
1import Config
2
3# For development, we disable any cache and enable
4# debugging and code reloading.
5config :esl_hn, EslHnWeb.Endpoint,
6 http: [ip: {127, 0, 0, 1}, port: 4000],
7 check_origin: false,
8 code_reloader: true,
9 debug_errors: true,
10 secret_key_base:
11 "TQ20YLfpm8CWUZ0wvMVvXwKLjOdxb6//anr3iafpvW15LKlsoMez2OFUTifz0gxs",
12 watchers: []
13
14config :esl_hn, refresh: :timer.seconds(5)
15
16# ## SSL Support
17#
18# In order to use HTTPS in development, a self-signed
19# certificate can be generated by running the following
20# Mix task:
21#
22# mix phx.gen.cert
23#
24# Run `mix help phx.gen.cert` for more information.
25#
26# The `http:` config above can be replaced with:
27#
28# https: [
29# port: 4001,
30# cipher_suite: :strong,
31# keyfile: "priv/cert/selfsigned_key.pem",
32# certfile: "priv/cert/selfsigned.pem"
33# ],
34#
35# If desired, both `http:` and `https:` keys can be
36# configured to run both http and https servers on
37# different ports.
38
39# Enable dev routes for dashboard and mailbox
40config :esl_hn, dev_routes: true
41
42# Do not include timestamps in development logs
43config :logger, :console, format: "$metadata[$level] $message\n"
44
45config :phoenix, :stacktrace_depth, 20
46
47# Initialize plugs at runtime for faster development compilation
48config :phoenix, :plug_init_mode, :runtime