feat: unified watch server under org-garden

This commit is contained in:
Ignacio Ballesteros
2026-02-21 00:36:31 +01:00
parent 1076bf31ed
commit a4582230b5
21 changed files with 679 additions and 296 deletions

34
org-garden/mix.exs Normal file
View File

@@ -0,0 +1,34 @@
defmodule OrgGarden.MixProject do
use Mix.Project
def project do
[
app: :org_garden,
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: escript()
]
end
def application do
[
extra_applications: [:logger],
mod: {OrgGarden.Application, []}
]
end
defp escript do
[main_module: OrgGarden.CLI]
end
defp deps do
[
{:finch, "~> 0.19"},
{:req, "~> 0.5"},
{:jason, "~> 1.4"},
{:file_system, "~> 1.0"}
]
end
end