livebook/config/config.exs
2024-05-08 10:05:01 +02:00

48 lines
1.3 KiB
Elixir

import Config
# Configures the endpoint
config :livebook, LivebookWeb.Endpoint,
adapter: Bandit.PhoenixAdapter,
url: [host: "localhost", path: "/"],
pubsub_server: Livebook.PubSub,
live_view: [signing_salt: "livebook"],
drainer: [shutdown: 1000],
render_errors: [formats: [html: LivebookWeb.ErrorHTML], layout: false]
# 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
# Additional mime types
config :mime, :types, %{
"audio/m4a" => ["m4a"],
"text/plain" => ["livemd"]
}
config :livebook,
agent_name: "livebook-agent",
allowed_uri_schemes: [],
app_service_name: nil,
app_service_url: nil,
authentication_mode: :token,
aws_credentials: false,
epmdless: false,
feature_flags: [],
force_ssl_host: nil,
learn_notebooks: [],
plugs: [],
shutdown_callback: nil,
teams_url: "https://teams.livebook.dev",
update_instructions_url: nil,
within_iframe: false
config :livebook, Livebook.Apps.Manager, retry_backoff_base_ms: 5_000
# 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"