From 1f720b57c95a4c00684f4e3b1343bd1aceda3449 Mon Sep 17 00:00:00 2001 From: Giovani Rodriguez Date: Tue, 15 Jul 2025 05:38:00 +0000 Subject: [PATCH] chore: add gitignore --- .gitignore | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b369581 --- /dev/null +++ b/.gitignore @@ -0,0 +1,78 @@ +# .NET (C#, ASP.NET Core, etc.) +bin/ +obj/ +*.user +*.suo +*.userosscache +*.sln.docstates + +# Build Results +*.dll +*.exe +*.app +*.log + +# Visual Studio +.vscode/ +.vs/ +*.dbmdl +*.bak +*.ncb +*.sdf +*.opensdf +*.cachefile + +# NuGet +*.nupkg +*.snupkg +.nuget/ +packages/ +project.lock.json +project.fragment.lock.json + +# Entity Framework +*.mdf +*.ldf + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# Rider +.idea/ + +# DotCover +*.dotCover + +# Logs +*.log + +# React / Node.js +node_modules/ +build/ +dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# Environment Files +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Misc +.DS_Store +Thumbs.db + +# IDE Specific +*.sw? +*.swn +*.swo +*.sublime-workspace +*.sublime-project + +# Coverage +coverage/ +*.lcov