feat: first take at UI app

This commit is contained in:
2026-04-24 14:54:04 +02:00
parent 78609377be
commit 1b5a5008eb
24 changed files with 2630 additions and 3 deletions

12
lib/bds/desktop.ex Normal file
View File

@@ -0,0 +1,12 @@
defmodule BDS.Desktop do
@moduledoc false
def url do
Application.get_env(:bds, :desktop)[:port]
|> url()
end
def url(port) when is_integer(port) do
"http://127.0.0.1:#{port}/"
end
end