2021-02-16 19:29:41 +08:00
|
|
|
import Config
|
|
|
|
|
|
|
|
if config_env() == :prod do
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
|
2021-03-04 05:56:28 +08:00
|
|
|
config :livebook, LivebookWeb.Endpoint,
|
2021-02-16 19:29:41 +08:00
|
|
|
http: [
|
|
|
|
# Enable IPv6 and bind on all interfaces.
|
|
|
|
# Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access.
|
|
|
|
ip: {0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
port: String.to_integer(System.get_env("PORT") || "4000")
|
|
|
|
],
|
|
|
|
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:
|
|
|
|
#
|
2021-03-04 05:56:28 +08:00
|
|
|
# config :livebook, LivebookWeb.Endpoint, server: true
|
2021-02-16 19:29:41 +08:00
|
|
|
#
|
|
|
|
# Then you can assemble a release by calling `mix release`.
|
|
|
|
# See `mix help release` for more information.
|
|
|
|
end
|