From 3f3c80b8b327586179cf03b6326dce508ab37f0d Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Wed, 21 Feb 2024 21:10:11 +0100 Subject: [PATCH] Add .gitignore --- .gitignore | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c373e59 --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# Frontend gitignore: +frontend/.DS_Store +frontend/node_modules +frontend/build +frontend/.svelte-kit +frontend/package +.env +.env.* +!.env.example +frontend/vite.config.js.timestamp-* +frontend/vite.config.ts.timestamp-* + +# Backend gitignore: +## Binaries for programs and plugins +backend/*.exe +backend/*.exe~ +backend/*.dll +backend/*.so +backend/*.dylib + +## Test binary, built with `go test -c` +backend/*.test + +## Output of the go coverage tool, specifically when used with LiteIDE +backend/*.out + +## Dependency directories (remove the comment below to include it) +backend/# vendor/ + +## Go workspace file +backend/go.work + +# Auth-service gitignore: +## Binaries for programs and plugins +auth-service/*.exe +auth-service/*.exe~ +auth-service/*.dll +auth-service/*.so +auth-service/*.dylib + +## Test binary, built with `go test -c` +auth-service/*.test + +## Output of the go coverage tool, specifically when used with LiteIDE +auth-service/*.out + +## Dependency directories (remove the comment below to include it) +auth-service/# vendor/ + +## Go workspace file +auth-service/go.work \ No newline at end of file