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:
parent
161464602e
commit
d66db4e85e
7 changed files with 150 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue