2021-09-04 16:19:23 -04:00
|
|
|
import Config
|
2021-03-11 21:12:55 -05:00
|
|
|
|
2022-02-25 21:35:12 -05:00
|
|
|
# Only in tests, remove the complexity from the password hashing algorithm
|
|
|
|
config :bcrypt_elixir, :log_rounds, 1
|
|
|
|
|
2021-03-11 21:12:55 -05: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.
|
2022-07-25 19:31:54 -04:00
|
|
|
config :memex, Memex.Repo,
|
2022-01-22 13:01:36 -05:00
|
|
|
pool: Ecto.Adapters.SQL.Sandbox,
|
|
|
|
pool_size: 10
|
2021-03-11 21:12:55 -05:00
|
|
|
|
|
|
|
# We don't run a server during test. If one is required,
|
|
|
|
# you can enable the server option below.
|
2022-07-25 19:31:54 -04:00
|
|
|
config :memex, MemexWeb.Endpoint,
|
2022-01-22 14:54:19 -05:00
|
|
|
http: [ip: {0, 0, 0, 0}, port: 4002],
|
2022-02-25 21:35:12 -05:00
|
|
|
secret_key_base: "S3qq9QtUdsFtlYej+HTjAVN95uP5i5tf2sPYINWSQfCKJghFj2B1+wTAoljZyHOK",
|
2021-03-11 21:12:55 -05:00
|
|
|
server: false
|
|
|
|
|
2022-01-22 13:01:36 -05:00
|
|
|
# In test we don't send emails.
|
2022-07-25 19:31:54 -04:00
|
|
|
config :memex, Memex.Mailer, adapter: Swoosh.Adapters.Test
|
2022-01-22 13:01:36 -05:00
|
|
|
|
2021-03-11 21:12:55 -05:00
|
|
|
# Print only warnings and errors during test
|
|
|
|
config :logger, level: :warn
|
2022-01-22 13:01:36 -05:00
|
|
|
|
|
|
|
# Initialize plugs at runtime for faster test compilation
|
|
|
|
config :phoenix, :plug_init_mode, :runtime
|
2022-02-25 21:35:12 -05:00
|
|
|
|
|
|
|
# Disable Oban
|
2022-07-25 19:31:54 -04:00
|
|
|
config :memex, Oban, queues: false, plugins: false
|