parts missed from the initial sync

This commit is contained in:
2026-04-23 10:42:47 +02:00
parent cd998f24a9
commit bb5e0e83e2
11 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
[
import_deps: [:ecto, :ecto_sql],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
]

View File

@@ -16,4 +16,4 @@ config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
import_config "#{config_env()}.exs"
import_config "#{config_env()}.exs"

View File

@@ -1,4 +1,4 @@
import Config
config :bds, BDS.Repo,
pool_size: 5
pool_size: 5

View File

@@ -8,4 +8,4 @@ if config_env() == :prod do
config :bds, BDS.Repo,
database: database_path,
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5")
end
end

View File

@@ -5,4 +5,4 @@ config :bds, BDS.Repo,
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: 5
config :logger, level: :warning
config :logger, level: :warning

View File

@@ -2,4 +2,4 @@ defmodule BDS do
@moduledoc """
Entry point for the bDS rewrite domain.
"""
end
end

View File

@@ -12,4 +12,4 @@ defmodule BDS.Application do
opts = [strategy: :one_for_one, name: BDS.Supervisor]
Supervisor.start_link(children, opts)
end
end
end

View File

@@ -2,4 +2,4 @@ defmodule BDS.Repo do
use Ecto.Repo,
otp_app: :bds,
adapter: Ecto.Adapters.SQLite3
end
end

View File

@@ -34,4 +34,4 @@ defmodule BDS.MixProject do
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"]
]
end
end
end

View File

@@ -4,4 +4,4 @@ defmodule BDSTest do
test "the repo module is configured" do
assert BDS.Repo.config()[:otp_app] == :bds
end
end
end

View File

@@ -1,2 +1,2 @@
ExUnit.start()
Ecto.Adapters.SQL.Sandbox.mode(BDS.Repo, :manual)
Ecto.Adapters.SQL.Sandbox.mode(BDS.Repo, :manual)