-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.exs
21 lines (16 loc) · 851 Bytes
/
dev.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Config
# For Development `config/dev.exs` loads the "Local" adapter which allows preview
# of sent emails at the url `/dev/mailbox`. To test SMTP in Development mode,
# mailer configurations for adapter, credentials and other options can be
# overriden in `config/dev.secret.exs`
config :epochtalk_server, EpochtalkServer.Mailer, adapter: Swoosh.Adapters.Local
# Do not include metadata nor timestamps in development logs
config :logger, :console, format: "[$level] $message\n"
# 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
if File.exists?("config/dev.secret.exs") do
import_config "dev.secret.exs"
end