Remove default db credentials from dev and test

pull/2/head
CJ Bryan and Matt Olenick 7 years ago
parent 8a8c85ad9a
commit a78e87177a
  1. 2
      config/dev.exs
  2. 2
      config/test.exs

@ -51,8 +51,6 @@ config :phoenix, :stacktrace_depth, 20
# Configure your database
config :explorer, Explorer.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "explorer_dev",
hostname: "localhost",
pool_size: 10

@ -12,8 +12,6 @@ config :logger, level: :warn
# Configure your database
config :explorer, Explorer.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "explorer_test",
hostname: "localhost",
pool: Ecto.Adapters.SQL.Sandbox

Loading…
Cancel
Save