50 lines
1.3 KiB
Elixir
50 lines
1.3 KiB
Elixir
use Mix.Config
|
|
|
|
secret_key_base =
|
|
System.get_env("SECRET_KEY_BASE") ||
|
|
raise """
|
|
environment variable SECRET_KEY_BASE is missing.
|
|
You can generate one by calling: mix phx.gen.secret
|
|
"""
|
|
|
|
config :bwc_web, BwcWeb.Endpoint,
|
|
http: [
|
|
port: String.to_integer(System.get_env("PORT") || "4000"),
|
|
transport_options: [socket_opts: [:inet6]]
|
|
],
|
|
secret_key_base: secret_key_base
|
|
|
|
# ## Using releases (Elixir v1.9+)
|
|
#
|
|
# If you are doing OTP releases, you need to instruct Phoenix
|
|
# to start each relevant endpoint:
|
|
#
|
|
# config :bwc_web, BwcWeb.Endpoint, server: true
|
|
#
|
|
# Then you can assemble a release by calling `mix release`.
|
|
# See `mix help release` for more information.
|
|
|
|
secret_key_base =
|
|
System.get_env("SECRET_KEY_BASE") ||
|
|
raise """
|
|
environment variable SECRET_KEY_BASE is missing.
|
|
You can generate one by calling: mix phx.gen.secret
|
|
"""
|
|
|
|
config :bwc_web, BwcWeb.Endpoint,
|
|
http: [
|
|
port: String.to_integer(System.get_env("PORT") || "4000"),
|
|
transport_options: [socket_opts: [:inet6]]
|
|
],
|
|
secret_key_base: secret_key_base
|
|
|
|
# ## Using releases (Elixir v1.9+)
|
|
#
|
|
# If you are doing OTP releases, you need to instruct Phoenix
|
|
# to start each relevant endpoint:
|
|
#
|
|
# config :bwc_web, BwcWeb.Endpoint, server: true
|
|
#
|
|
# Then you can assemble a release by calling `mix release`.
|
|
# See `mix help release` for more information.
|