mobilizon.chapril.org-mobil.../config/test.exs

55 lines
1.6 KiB
Elixir
Raw Normal View History

import Config
config :mobilizon, :instance,
name: "Test instance",
registrations_open: true
# We don't run a server during test. If one is required,
# you can enable the server option below.
2020-01-26 21:36:50 +01:00
config :mobilizon, Mobilizon.Web.Endpoint,
http: [
port: 80
],
url: [
host: "mobilizon.test",
scheme: "http"
],
secret_key_base: "some secret",
server: false
# Print only warnings and errors during test
config :logger,
backends: [:console],
compile_time_purge_matching: [
[level_lower_than: :debug]
],
level: :info
# Configure your database
2019-09-08 01:49:56 +02:00
config :mobilizon, Mobilizon.Storage.Repo,
types: Mobilizon.Storage.PostgresTypes,
username: System.get_env("MOBILIZON_DATABASE_USERNAME") || "mobilizon_test",
2020-01-23 21:59:50 +01:00
password: System.get_env("MOBILIZON_DATABASE_PASSWORD") || "mobilizon",
database: System.get_env("MOBILIZON_DATABASE_DBNAME") || "mobilizon_test",
hostname: System.get_env("MOBILIZON_DATABASE_HOST") || "localhost",
2019-09-08 01:49:56 +02:00
pool: Ecto.Adapters.SQL.Sandbox
2020-01-26 21:36:50 +01:00
config :mobilizon, Mobilizon.Web.Email.Mailer, adapter: Bamboo.TestAdapter
2020-01-26 21:36:50 +01:00
config :mobilizon, Mobilizon.Web.Upload, filters: [], link_name: false
2020-01-26 21:36:50 +01:00
config :mobilizon, Mobilizon.Web.Upload.Uploader.Local, uploads: "test/uploads"
config :exvcr,
vcr_cassette_library_dir: "test/fixtures/vcr_cassettes"
config :mobilizon, Mobilizon.Service.Geospatial, service: Mobilizon.Service.Geospatial.Mock
config :mobilizon, Oban, queues: false, prune: :disabled
config :mobilizon, Mobilizon.Web.Auth.Guardian, secret_key: "some secret"
if System.get_env("DOCKER", "false") == "false" && File.exists?("./config/test.secret.exs") do
import_config "test.secret.exs"
end