# Example Dagu DAG # This is a simple example workflow name: example description: Example workflow to demonstrate Dagu capabilities schedule: # Run every day at 9:00 AM - "0 9 * * *" steps: - name: hello command: echo "Hello from Dagu!" - name: list_files command: ls -la /home/lucas/dagu/scripts depends: - hello - name: date command: date depends: - hello