async function handleEvent()

in monitoring/localRun.ts [40:50]


async function handleEvent(options: LocalRunCLIUserInput) {

	const event: CustomScheduleEventContent = {
		stage: options.env,
		jurisdiction: options.jurisdiction,
	};

	console.log('To run again without interactive use the following function:', `pnpm start --env ${options.env} --jurisdiction ${options.jurisdiction}`);
	await handler(event);
	process.exit(0);
}