version: "3" tasks: build: desc: "Builds both the cthcous daemon and the container bridge binaries." cmds: - go build -o build/bridge git.rnrd.eu/cthcous/bridge - go build -o build/cthcous git.rnrd.eu/cthcous run: desc: "Runs cthcous binary." deps: [build] cmds: - build/cthcous run-container: desc: "Runs the container bridge binary." deps: [build] cmds: - build/bridge open-test-socket: desc: "Opens and listens to `./test.socket`." cmds: - ncat -Ulk ./test.socket