livebook/config/config.exs
2023-03-13 14:44:33 +01:00

41 lines
1.1 KiB
Elixir

import Config
# Configures the endpoint
config :livebook, LivebookWeb.Endpoint,
url: [host: "localhost", path: "/"],
pubsub_server: Livebook.PubSub,
live_view: [signing_salt: "livebook"]
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
# Use Jason for JSON parsing in Phoenix
config :phoenix, :json_library, Jason
# Add mime type to upload notebooks with `Phoenix.LiveView.Upload`
config :mime, :types, %{
"text/plain" => ["livemd"]
}
# We want CSRF tokens to be logged to help users with debugging
config :plug_cowboy, :log_exceptions_with_status_code, [407..599]
config :livebook,
app_service_name: nil,
app_service_url: nil,
authentication_mode: :token,
feature_flags: [],
force_ssl_host: nil,
learn_notebooks: [],
plugs: [],
shutdown_callback: nil,
update_instructions_url: nil,
within_iframe: false,
allowed_uri_schemes: []
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"