mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
37 lines
863 B
Elixir
37 lines
863 B
Elixir
import Config
|
|
|
|
# We don't run a server during test. If one is required,
|
|
# you can enable the server option below.
|
|
config :plausible, PlausibleWeb.Endpoint, server: false
|
|
|
|
config :bcrypt_elixir, :log_rounds, 4
|
|
|
|
config :plausible, Plausible.Repo, pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
config :plausible, Plausible.ClickhouseRepo,
|
|
loggers: [Ecto.LogEntry],
|
|
pool_size: 5
|
|
|
|
config :plausible, Plausible.Mailer, adapter: Bamboo.TestAdapter
|
|
|
|
config :plausible,
|
|
paddle_api: Plausible.PaddleApi.Mock,
|
|
google_api: Plausible.Google.Api.Mock
|
|
|
|
config :bamboo, :refute_timeout, 10
|
|
|
|
config :geolix,
|
|
databases: [
|
|
%{
|
|
id: :geolocation,
|
|
adapter: Geolix.Adapter.Fake,
|
|
data: %{
|
|
{1, 1, 1, 1} => %{country: %{iso_code: "US"}},
|
|
{1, 1, 1, 1, 1, 1, 1, 1} => %{country: %{iso_code: "US"}}
|
|
}
|
|
}
|
|
]
|
|
|
|
config :plausible,
|
|
session_timeout: 0
|