Ritesh
07/16/2025, 6:04 AMMarvin
07/16/2025, 6:04 AMMarvin
07/16/2025, 6:05 AMbash
prefect deploy ./path/to/flow.py:flow_name \
--name my-deployment \
--cron "0 0 * * *" # or --interval 3600 for hourly
The three main types of schedules supported are:
- Cron schedules (using standard cron syntax)
- Interval schedules (specified in seconds)
- RRule schedules (for more complex calendar-based scheduling)
Would you like me to provide more specific examples of any of these scheduling methods?