live_beats/config/test.exs

47 lines
1.4 KiB
Elixir
Raw Permalink Normal View History

2021-09-02 18:00:57 +00:00
import Config
2022-01-28 01:42:26 +00:00
config :live_beats,
replica: LiveBeats.Repo
config :live_beats, :files,
2021-12-14 20:19:03 +00:00
uploads_dir: Path.expand("../tmp/test-uploads", __DIR__),
host: [scheme: "http", host: "localhost", port: 4000],
server_ip: "127.0.0.1"
2021-09-02 18:00:57 +00:00
# Configure your database
#
# The MIX_TEST_PARTITION environment variable can be used
# to provide built-in test partitioning in CI environment.
# Run `mix help test` for more information.
config :live_beats, LiveBeats.Repo,
username: "postgres",
password: "postgres",
database: "live_beats_test#{System.get_env("MIX_TEST_PARTITION")}",
hostname: "localhost",
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: 10
2022-01-28 01:42:26 +00:00
config :live_beats, LiveBeats.ReplicaRepo,
username: "postgres",
password: "postgres",
database: "live_beats_test#{System.get_env("MIX_TEST_PARTITION")}",
hostname: "localhost",
show_sensitive_data_on_connection_error: true,
pool_size: 10,
priv: "priv/repo"
2021-09-02 18:00:57 +00:00
# We don't run a server during test. If one is required,
# you can enable the server option below.
config :live_beats, LiveBeatsWeb.Endpoint,
http: [ip: {127, 0, 0, 1}, port: 4002],
server: false
# Print only warnings and errors during test
config :logger, level: :warn
# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime
2022-11-17 15:01:20 +00:00
# Disable swoosh api client as it is only required for production adapters.
config :swoosh, :api_client, false