Hi i am learning dagster and i want help with starting schedule I am able to add and start schedule in dagit but i want to start schedule automatically instead of turn on every schedule from dagit.
#Here is my code
@solid()
def test(context):
   context.log.info("test")
  
@pipeline()
def testPipeline():
    test()
@schedule(
    cron_schedule="* * * * *", pipeline_name="testPipeline", execution_timezone="Asia/Kolkata"
)
def scheduleTest():
    return {}
@repository()
def testRepo():
    return [testPipeline, scheduleTest]