releases.exs 395 B

12345678910
  1. import Config
  2. secret_key_base = System.fetch_env!("SECRET_KEY_BASE")
  3. application_port = System.fetch_env!("APP_PORT")
  4. application_host = System.fetch_env!("APP_HOST")
  5. config :openpod, OpenpodWeb.Endpoint,
  6. url: [scheme: "http", host: application_host, port: String.to_integer(application_port)],
  7. http: [:inet6, port: String.to_integer(application_port)],
  8. secret_key_base: secret_key_base