55 lines
1.6 KiB
Elixir
55 lines
1.6 KiB
Elixir
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.
|
|
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
|
|
config :mobilizon, Mobilizon.Storage.Repo,
|
|
types: Mobilizon.Storage.PostgresTypes,
|
|
username: System.get_env("MOBILIZON_DATABASE_USERNAME") || "mobilizon_test",
|
|
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",
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
config :mobilizon, Mobilizon.Web.Email.Mailer, adapter: Bamboo.TestAdapter
|
|
|
|
config :mobilizon, Mobilizon.Web.Upload, filters: [], link_name: false
|
|
|
|
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
|