diff --git a/.gitignore b/.gitignore index 1f05150..c37b247 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ !.env.include* .DS_Store +bin/ diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..1bdb5e1 --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://taskfile.dev/schema.json +version: '3' +tasks: + build: + cmds: + - go build -o ./bin/tui ./cmd/tui/main.go