use Mix.Config config :presence_ex, PresenceEx.Repo, database: "presence_repo", username: "postgres", password: "password", hostname: "localhost", schemas: 3 config :presence_ex, ecto_repos: [PresenceEx.Repo] if Mix.env() == :dev do config :git_hooks, auto_install: true, verbose: true, hooks: [ pre_commit: [ tasks: [ {:cmd, "mix format --check-formatted"} ] ] ] end