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

@ -74,6 +74,7 @@ function listLocal(dir: string): CatalogEntry[] {
}
for (const name of names.sort()) {
if (!statSync(join(dir, name), { throwIfNoEntry: false })?.isDirectory()) continue;
const metaPath = join(dir, name, "metadata.json");
if (!statSync(metaPath, { throwIfNoEntry: false })?.isFile()) continue;
try {