13 lines
298 B
Elixir
13 lines
298 B
Elixir
# scopes: development config file
|
|
|
|
import Config
|
|
|
|
config :logger, :default_handler,
|
|
level: System.get_env("SCOPES_LOG_LEVEL", "info") |> String.to_atom,
|
|
config: [
|
|
file: ~c"log/scopes_dev.log"
|
|
]
|
|
|
|
config :scopes_csys, Scopes.CSys.Server.Endpoint,
|
|
http: [ip: {127, 0, 0, 1}, port: 8800]
|
|
|