All checks were successful
CI/CD Pipeline / build (push) Successful in 35s
14 lines
322 B
Elixir
14 lines
322 B
Elixir
import Config
|
|
|
|
config :backend, BackendWeb.Endpoint,
|
|
exclude: [
|
|
# paths: ["/health"],
|
|
hosts: ["localhost", "127.0.0.1"]
|
|
]
|
|
|
|
# Do not print debug messages in production
|
|
config :logger, level: :info
|
|
|
|
# Runtime production configuration, including reading
|
|
# of environment variables, is done on config/runtime.exs.
|