Add forgejo (with shared postgres), docs/ideas; fix ENOTDIR in local catalog listing

Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
Ezequiel C. 2026-09-10 23:29:36 +02:00
parent 161464602e
commit d66db4e85e
7 changed files with 150 additions and 1 deletions

View file

@ -9,6 +9,7 @@ const servicesDir = join(repoRoot, "services");
const services: Catalog["services"] = [];
for (const name of readdirSync(servicesDir).sort()) {
if (!statSync(join(servicesDir, name), { throwIfNoEntry: false })?.isDirectory()) continue;
const metaPath = join(servicesDir, name, "metadata.json");
if (!statSync(metaPath, { throwIfNoEntry: false })?.isFile()) continue;