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