Merge pull request #41 from wagesj45/codex/add-logging,-locking-and-cron-setup-scripts

Add lock files and cron setup
This commit is contained in:
Jordan Wages 2025-07-19 03:35:31 -05:00 committed by GitHub
commit ad28b6e81e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 79 additions and 1 deletions

View file

@ -161,7 +161,10 @@ def _generate_interval(interval: str, domain: Optional[str] = None) -> None:
report_list.append(entry)
_save_json(out_dir / "reports.json", report_list)
typer.echo(f"Generated {interval} reports")
if domain:
typer.echo(f"Generated {interval} reports for {domain}")
else:
typer.echo(f"Generated {interval} reports")
def _generate_all_domains(interval: str) -> None: