docs: add cron/systemd integration guide #103
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
thwap/kronai!103
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/0047-integrate-with-cron"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Add documentation for integrating kronai with cron and systemd, including example crontab entries and systemd service/timer unit files.
Why
Users need guidance on how to schedule kronai job intervals via the system's standard scheduling mechanisms.
Testing
Documentation only — no code changes.
Closes #0045
Closes #0046
Closes #0047
Automated Review — PR #103
Result: APPROVED
Clean documentation. Covers both cron and systemd setups with clear examples. No code changes.
Type=oneshot, template units with%i,Persistent=true, andjournalctlusage are all correct.Suggestions (non-blocking)
docs/cron-integration.md:99-100— The service unit setsEnvironment=KRONAI_CONFIG=/etc/kronai/config.tomlbut the CLI doesn't read aKRONAI_CONFIGenv var — it uses--configflag. The env var will have no effect. UseExecStart=/usr/local/bin/kronai --config /etc/kronai/config.toml %iinstead, or addKRONAI_CONFIGenv var support tocli.py/config.py.