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
14# ## SSL Support
15#
16# In order to use HTTPS in development, a self-signed
17# certificate can be generated by running the following
18# Mix task:
19#
20# mix phx.gen.cert
21#
22# Run `mix help phx.gen.cert` for more information.
23#
24# The `http:` config above can be replaced with:
25#
26# https: [
27# port: 4001,
28# cipher_suite: :strong,
29# keyfile: "priv/cert/selfsigned_key.pem",
30# certfile: "priv/cert/selfsigned.pem"
31# ],
32#
33# If desired, both `http:` and `https:` keys can be
34# configured to run both http and https servers on
35# different ports.
36
37# Enable dev routes for dashboard and mailbox
38config :esl_hn, dev_routes: true
39
40# Do not include timestamps in development logs
41config :logger, :console, format: "$metadata[$level] $message\n"
42
43config :phoenix, :stacktrace_depth, 20
44
45# Initialize plugs at runtime for faster development compilation
46config :phoenix, :plug_init_mode, :runtime