<@ULVA73B9P> in prefect 3.4.4, can i assign schedu...
# ask-marvin
r
@Marvin in prefect 3.4.4, can i assign schedule to a flow in its decorator paramters?
m
thought for 47.5 seconds
You can create a scheduled deployment using the CLI with:
Copy code
bash
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?