aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-03 17:51:51 +0200
committeralex <[email protected]>2026-07-03 17:51:51 +0200
commiteaff064342ab2baa09cc2ea15f11726c666c3407 (patch)
tree4163529bbfe5b309d2f29778389d26d6700a4df0 /.gitignore
parente9a9d8694eda14a75a9af3781deded16c6f41cc0 (diff)
downloadredis-clone-eaff064342ab2baa09cc2ea15f11726c666c3407.tar.xz
redis-clone-eaff064342ab2baa09cc2ea15f11726c666c3407.zip
basic dictionary server with set and get todo: mutex to protect server
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore25
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..f6501fa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,25 @@
+# Binaries and executables
+# (This catches the compiled files generated by 'go build')
+*.exe
+*.exe~
+*.dll
+*.so
+*.dylib
+bin/
+__debug_bin
+
+# OS generated files
+.DS_Store
+Thumbs.db
+
+# IDE specific files
+.idea/
+.vscode/
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
+# Optional: If you use a .env file for local configuration/ports
+.env