Adjust again for uncertian config

This commit is contained in:
Owen
2025-08-20 17:48:55 -07:00
parent 49f0f6ec7d
commit 77796e8a75
9 changed files with 18 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ import path from "path";
import { fileURLToPath } from "url";
// This is a placeholder value replaced by the build process
export const APP_VERSION = "1.8.0";
export const APP_VERSION = "1.9.0";
export const __FILENAME = fileURLToPath(import.meta.url);
export const __DIRNAME = path.dirname(__FILENAME);

View File

@@ -44,7 +44,7 @@ export const configSchema = z
name: z.string().optional(),
id: z.string().optional(),
secret: z.string().optional(),
endpoint: z.string().optional(),
endpoint: z.string().optional().default("https://pangolin.fossorial.io"),
redirect_endpoint: z.string().optional()
})
.optional(),