2021-02-16 19:29:41 +08:00
|
|
|
import Config
|
2021-01-08 03:55:45 +08:00
|
|
|
|
|
|
|
# Configures the endpoint
|
2021-03-04 05:56:28 +08:00
|
|
|
config :livebook, LivebookWeb.Endpoint,
|
2021-01-08 03:55:45 +08:00
|
|
|
url: [host: "localhost"],
|
2021-03-04 05:56:28 +08:00
|
|
|
pubsub_server: Livebook.PubSub,
|
2021-04-08 17:41:52 +08:00
|
|
|
live_view: [signing_salt: "livebook"]
|
2021-01-08 03:55:45 +08:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2021-11-01 20:59:39 +08:00
|
|
|
# Add mime type to upload notebooks with `Phoenix.LiveView.Upload`
|
|
|
|
config :mime, :types, %{
|
|
|
|
"text/plain" => ["livemd"]
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:52:28 +08:00
|
|
|
config :livebook,
|
2022-04-15 19:46:26 +08:00
|
|
|
app_service_name: nil,
|
|
|
|
app_service_url: nil,
|
2022-04-14 21:52:28 +08:00
|
|
|
authentication_mode: :token,
|
|
|
|
explore_notebooks: [],
|
|
|
|
plugs: [],
|
|
|
|
shutdown_enabled: false,
|
|
|
|
storage: Livebook.Storage.Ets
|
2021-11-03 05:32:58 +08:00
|
|
|
|
2021-01-08 03:55:45 +08:00
|
|
|
# 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"
|