Update
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user