Skip to main content

examples/hello_phoenix/config/dev.exs

import Config

config :hello_phoenix, HelloPhoenixWeb.Endpoint,
  http: [ip: {127, 0, 0, 1}, port: String.to_integer(System.get_env("PORT", "4000"))],
  debug_errors: true,
  code_reloader: false,
  check_origin: false,
  secret_key_base: String.duplicate("a", 64),
  server: true