awesome-compose/phoenix-postgres/app/config/.secret.exs
manolis kousanakis f156dfb52c Sample for phoenix(elixir)-postgres
Signed-off-by: Manolis Kousanakis <ekousanakis@gmail.com>
2020-05-06 21:30:04 +03:00

12 lines
236 B
Elixir

use Mix.Config
config :app, App.Repo,
username: "postgres",
password: "postgres",
database: "AppDB",
hostname: "localhost",
port: "5432",
virtual_host: "/",
show_sensitive_data_on_connection_error: false,
pool_size: 10