commit 9536baf5ca326626a70ea49320ef017b6768e6a5 Author: Martin Švrčina Date: Mon Mar 16 23:54:52 2026 +0100 Initial commit: add .gitignore for .NET + Vue stack Co-Authored-By: Claude Sonnet 4.6 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..522c44a --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# ======================== +# .NET +# ======================== +bin/ +obj/ +*.user +*.suo +.vs/ +*.log +*.DS_Store +appsettings.Development.json +appsettings.Local.json + +# NuGet +*.nupkg +.nuget/ + +# Publish output +publish/ +out/ + +# ======================== +# Vue / Node +# ======================== +node_modules/ +dist/ +.env +.env.local +.env.*.local +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.vite/ +.cache/ + +# ======================== +# Rider / VS Code / VS +# ======================== +.idea/ +.vscode/ +*.swp +*.swo + +# ======================== +# OS +# ======================== +Thumbs.db +.DS_Store