17 lines
452 B
Elixir
17 lines
452 B
Elixir
# This file is responsible for configuring your application
|
|
# and its dependencies with the aid of the Mix.Config module.
|
|
use Mix.Config
|
|
|
|
config :tres,
|
|
protocol: :tcp,
|
|
port: 6653,
|
|
max_connections: 10,
|
|
num_acceptors: 10,
|
|
callback_module: Tres.ExampleHandler,
|
|
callback_args: []
|
|
|
|
config :logger,
|
|
level: :info,
|
|
format: "$date $time [$level] $metadata$message\n",
|
|
metadata: [:application],
|
|
handle_otp_reports: true
|