# SPDX-FileCopyrightText: 2026 Ɓukasz Niemier <~@hauleth.dev> # # SPDX-License-Identifier: Apache-2.0 import Config config :ecto_view, ecto_repos: [EctoView.Repo] config :ecto_view, EctoView.Repo, username: System.get_env("POSTGRES_USER", "postgres"), password: System.get_env("POSTGRES_PASSWORD", "postgres"), database: System.get_env("POSTGRES_DB", "ecto_view"), hostname: "postgres", socket_dir: System.get_env("PGHOST"), show_sensitive_data_on_connection_error: true, pool_size: 10