feat: more clear definition and first base implementation for lua

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-23 12:05:12 +02:00
parent 3f5744308c
commit a449778b44
18 changed files with 859 additions and 16 deletions

View File

@@ -6,7 +6,10 @@ defmodule BDS.Application do
@impl true
def start(_type, _args) do
children = [
BDS.Repo
BDS.Repo,
BDS.Scripting.JobStore,
{Task.Supervisor, name: BDS.Scripting.TaskSupervisor},
BDS.Scripting.JobSupervisor
]
opts = [strategy: :one_for_one, name: BDS.Supervisor]