14 lines
358 B
Elixir
14 lines
358 B
Elixir
import Config
|
|
|
|
# Configure your database
|
|
config :tmunitex, TmunitEx.Repo,
|
|
username: "tmunitex",
|
|
password: "tmunitex",
|
|
hostname: "localhost",
|
|
database: "tmunitex_dev",
|
|
show_sensitive_data_on_connection_error: true,
|
|
pool_size: 10
|
|
|
|
# Do not include metadata nor timestamps in development logs
|
|
config :logger, :console, format: "[$level] $message\n"
|