This commit is contained in:
2025-06-07 19:35:55 +09:00
parent 353843871a
commit a0a253cb43
3 changed files with 20 additions and 2 deletions

View File

@@ -33,6 +33,11 @@ interface Config {
password?: string;
};
// Batch Processing Configuration
batch: {
disableInitialRun: boolean;
};
// File paths
paths: {
projectRoot: string;
@@ -92,6 +97,10 @@ function createConfig(): Config {
password: import.meta.env["ADMIN_PASSWORD"],
},
batch: {
disableInitialRun: getOptionalEnv("DISABLE_INITIAL_BATCH", "false") === "true",
},
paths: {
projectRoot,
dataDir,