this repo has no description
1# This file is responsible for configuring your application
2# and its dependencies with the aid of the Config module.
3#
4# This configuration file is loaded before any dependency and
5# is restricted to this project.
6
7import Config
8
9config :esl_hn,
10 generators: [timestamp_type: :utc_datetime]
11
12# Configures the endpoint
13config :esl_hn, EslHnWeb.Endpoint,
14 url: [host: "localhost"],
15 adapter: Bandit.PhoenixAdapter,
16 render_errors: [
17 formats: [json: EslHnWeb.ErrorJSON],
18 layout: false
19 ],
20 pubsub_server: EslHn.PubSub,
21 live_view: [signing_salt: "xzNLXpSZ"]
22
23# Configures Elixir's Logger
24config :logger, :console,
25 format: "$time $metadata[$level] $message\n",
26 metadata: [:request_id, :file, :line, :mfa]
27
28# Use built in JSON for JSON parsing in Phoenix
29config :phoenix, :json_library, JSON
30
31import_config "#{config_env()}.exs"