<@ULVA73B9P> I want to view the scheduling directl...
# ask-marvin
k
@Marvin I want to view the scheduling directly on my self hosted linux prefect server. Where can I find this file?
m
To view and manage scheduling on your self-hosted Prefect server, you should look into the
prefect.yaml
file. This file contains a
schedules
section that defines when to execute runs for your deployments. You can create or modify this file using the
prefect deploy
command, which will guide you through setting up schedules interactively. For more detailed information on how to add schedules, you might want to refer to the Prefect documentation here. If you're looking for the actual scheduling service, it is a built-in service of Prefect Cloud and starts automatically when you run
prefect server start
. This service evaluates each deployment's schedules and creates new runs as needed.
k
@Marvin where exactly on the prefect server is the prefect.yaml file located?
m
The
prefect.yaml
file is typically located in the root directory of your repository or project where your flow code resides. It is created when you initialize your deployment configuration using the CLI command
prefect init
. This command can be run in any directory or repository that stores your flow code. For more details on how to use and configure the
prefect.yaml
file, you can refer to the Prefect documentation here.