initial commit

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-23 10:42:27 +02:00
commit cd998f24a9
57 changed files with 9751 additions and 0 deletions

5
lib/bds.ex Normal file
View File

@@ -0,0 +1,5 @@
defmodule BDS do
@moduledoc """
Entry point for the bDS rewrite domain.
"""
end

15
lib/bds/application.ex Normal file
View File

@@ -0,0 +1,15 @@
defmodule BDS.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
BDS.Repo
]
opts = [strategy: :one_for_one, name: BDS.Supervisor]
Supervisor.start_link(children, opts)
end
end

5
lib/bds/repo.ex Normal file
View File

@@ -0,0 +1,5 @@
defmodule BDS.Repo do
use Ecto.Repo,
otp_app: :bds,
adapter: Ecto.Adapters.SQLite3
end