# yaml-language-server: $schema=https://taskfile.dev/schema.jsonversion: "3"includes: pkg/rest: dir: ../pkg/rest taskfile: ../pkg/rest pkg/broker: dir: ../pkg/broker taskfile: ../pkg/broker pkg/webrtc: dir: ../pkg/webrtc taskfile: ../pkg/webrtc/taskfile.yaml apps/spa: dir: ../apps/spa taskfile: ../apps/spa/taskfile.yamltasks: infra-up: cmds: - make infra/up status: - curl -s http://localhost:15672 stack: deps: - infra-up # wait for this task <--------- - pkg/rest:run - pkg/broker:run - pkg/webrtc:run - apps/spa:run