From a0109a992e0ed189702ad4f8c736bc8ba23e21da Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Sat, 29 Oct 2022 18:09:53 -0800 Subject: [PATCH] update build paths --- .gitignore | 2 +- Taskfile.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2aab999..7fbecd2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ backend/.data/* config.yml homebox.db .idea - .DS_Store test-mailer.json node_modules @@ -32,6 +31,7 @@ node_modules go.work .task/ backend/.env +build/* # Output Directory for Nuxt/Frontend during build step backend/app/api/public/* diff --git a/Taskfile.yml b/Taskfile.yml index ecd3bca..48044ee 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -77,7 +77,7 @@ tasks: go:build: desc: Builds the backend binary cmds: - - cd backend && go build -o ../bin/backend ./app/api + - cd backend && go build -o ../build/backend ./app/api db:generate: desc: Run Entgo.io Code Generation