From 48b1e7fd8fb16daacd7b87f6bc6d422400cd0a5f Mon Sep 17 00:00:00 2001 From: Mel Date: Wed, 23 Aug 2023 03:09:18 +0200 Subject: Initial --- Taskfile.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Taskfile.yml (limited to 'Taskfile.yml') diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..adda6eb --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,20 @@ +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 -- cgit 1.4.1