20 lines
520 B
Elixir
20 lines
520 B
Elixir
# scopes: basic config file
|
|
|
|
import Config
|
|
|
|
config :logger, :default_formatter,
|
|
format: "$date $time [$level] $metadata $message\n",
|
|
colors: [enabled: false],
|
|
metadata: [:mfa, :pid]
|
|
|
|
config :scopes_csys, Scopes.CSys.Server.Endpoint,
|
|
url: [host: "localhost"],
|
|
adapter: Bandit.PhoenixAdapter,
|
|
render_errors: [
|
|
formats: [json: Scopes.Web.Server.ErrorJSON],
|
|
layout: false
|
|
],
|
|
#pubsub_server: Scopes.Web.Server.PubSub,
|
|
live_view: [signing_salt: "3Jtdea8i"]
|
|
|
|
import_config "#{config_env()}.exs"
|