diff --git a/.gitignore b/.gitignore index 9247b70..d18c43e 100644 --- a/.gitignore +++ b/.gitignore @@ -25,31 +25,6 @@ go.work.sum # env file .env -# ---> Go.AllowList -# Allowlisting gitignore template for GO projects prevents us -# from adding various unwanted local files, such as generated -# files, developer configurations or IDE-specific files etc. -# -# Recommended: Go.AllowList.gitignore - -# Ignore everything -* - -# But not these files... -!/.gitignore - -!*.go -!go.sum -!go.mod - -!README.md -!LICENSE - -# !Makefile - -# ...even if they are in subdirectories -!*/ - # ---> Redis # Ignore redis binary dump (dump.rdb) files @@ -58,6 +33,7 @@ go.work.sum # ---> Node # Logs logs +.cache *.log npm-debug.log* yarn-debug.log* @@ -98,6 +74,7 @@ build/Release # Dependency directories node_modules/ +bower_components/ jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) @@ -132,15 +109,20 @@ web_modules/ # dotenv environment variable files .env -.env.development.local -.env.test.local -.env.production.local -.env.local +.env.* +!.env.example # parcel-bundler cache (https://parceljs.org/) .cache .parcel-cache +# Svelte Build outputs +dist/ +build/ +/.svelte-kit/ +/package/ +/output + # Next.js build output .next out @@ -193,3 +175,17 @@ dist .yarn/install-state.gz .pnp.* +# OS & IDE +.DS_Store +.idea/ +.vscode/ +*.tgz +tmp + +# Testing +coverage/ +.nyc_output + +# Deployment +.vercel +.netlify \ No newline at end of file