You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
use Mix.Config
|
|
|
|
config :su_score_clock, SUScoreClockWeb.Endpoint,
|
|
http: [port: 4015],
|
|
debug_errors: true,
|
|
code_reloader: true,
|
|
check_origin: false,
|
|
live_reload: [
|
|
patterns: [
|
|
~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$",
|
|
~r"priv/gettext/.*(po)$",
|
|
~r"lib/lists_web/{live,views}/.*(ex)$",
|
|
~r"lib/lists_web/templates/.*(eex)$"
|
|
]
|
|
],
|
|
live_view: [signing_salt: "jJHGVhyqcQkYClKG8CfLZUCGhMG4rc0M"],
|
|
pubsub_server: :su_server,
|
|
render_errors: [view: SUScoreClockWeb.ErrorView, accepts: ~w(html json)],
|
|
secret_key_base: "k+oVUmANZZaz+4CPAJD/l2L5vxS1Bdu70sjGTko5CBZHkIco94py4DJasJNEwhZr",
|
|
url: [host: "localhost"],
|
|
watchers: [
|
|
node: [
|
|
"node_modules/webpack/bin/webpack.js",
|
|
"--mode",
|
|
"development",
|
|
"--watch-stdin",
|
|
cd: Path.expand("../../assets", __DIR__)
|
|
]
|
|
]
|
|
|
|
config :logger, :console,
|
|
format: "[$level] $time $message\n",
|
|
metadata: [:request_id],
|
|
level: :info
|
|
|
|
# config :su_bch_client, SUBCHClient,
|
|
# client_ip: "192.168.1.15",
|
|
# client_port: 4000,
|
|
# client_sname: "su_score_clock",
|
|
# debug_subscriptions?: false,
|
|
# debug_transactions?: false,
|
|
# su_bch_servers: [
|
|
# {:"su_bch_server@192.168.1.112", :su_bch_server, :rpc}
|
|
# ]
|
|
|
|
# Set a higher stacktrace during development. Avoid configuring such
|
|
# in production as building large stacktraces may be expensive.
|
|
config :phoenix, :stacktrace_depth, 20
|
|
|
|
# Initialize plugs at runtime for faster development compilation
|
|
config :phoenix, :plug_init_mode, :runtime
|
|
|