livebook/config/config.exs

29 lines
991 B
Elixir
Raw Normal View History

2021-01-08 03:55:45 +08:00
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
# General application configuration
use Mix.Config
# Configures the endpoint
config :live_book, LiveBookWeb.Endpoint,
url: [host: "localhost"],
2021-01-08 04:16:54 +08:00
secret_key_base: "9hHHeOiAA8wrivUfuS//jQMurHxoMYUtF788BQMx2KO7mYUE8rVrGGG09djBNQq7",
2021-01-08 03:55:45 +08:00
render_errors: [view: LiveBookWeb.ErrorView, accepts: ~w(html json), layout: false],
pubsub_server: LiveBook.PubSub,
2021-01-08 04:16:54 +08:00
live_view: [signing_salt: "mAPgPEM4"]
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
# 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"