initial commit

This commit is contained in:
syntaxbullet
2026-05-13 17:26:13 +02:00
commit 99569d2cf3
43 changed files with 8725 additions and 0 deletions

7
deployPaths.ts Normal file
View File

@@ -0,0 +1,7 @@
import { join } from "node:path";
export const appDataDir = process.env.BMP_DATA_DIR;
export function dataPath(defaultPath: string, ...parts: string[]): string {
return appDataDir ? join(appDataDir, ...parts) : defaultPath;
}