init commit
All checks were successful
Build and Publish / build-release (push) Successful in 4m46s

This commit is contained in:
2026-04-15 15:31:56 -05:00
commit f566d04a04
41 changed files with 2430 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
defmodule ProviderService.Application do
use Application
def start(_type, _args) do
children = [
ProviderService.Repo,
ProviderService.CommandedApp,
ProviderService.Projections.ProviderProjection,
ProviderServiceWeb.Endpoint
]
opts = [strategy: :one_for_one, name: ProviderService.Supervisor]
Supervisor.start_link(children, opts)
end
end