aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-04-06 06:12:35 +0530
committerBobby <[email protected]>2025-04-06 06:12:35 +0530
commita6de03acda17184f38103c2782ded6fb0ab768de (patch)
treebe398d9084a081edac3274318dae8d2337d98508 /.gitignore
downloadmetachan-a6de03acda17184f38103c2782ded6fb0ab768de.tar.xz
metachan-a6de03acda17184f38103c2782ded6fb0ab768de.zip
initialised project barebores
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore48
1 files changed, 48 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6c40cb4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,48 @@
+# gitignore for the metachan project
+### Go ###
+
+# Binaries for programs and plugins
+*.exe
+*.exe~
+*.dll
+*.so
+*.dylib
+
+# Test binary, build with `go test -c`
+*.test
+
+# Output of the go coverage tool, specifically when used with LiteIDE
+*.out
+
+# Vendor directory (for Go modules)
+# vendor/
+
+# Go workspace file
+go.work
+
+# Binary build artifacts
+bin/
+
+# Temporary cache and log files
+*.tmp
+*.temp
+*.cache
+*.log
+
+# IDE specific files
+.vscode/
+.idea/
+*.iml
+
+# OS specific files
+.DS_Store
+Thumbs.db
+
+# Backup files
+*~
+*.bak
+*.orig
+*.swp
+
+# Environment files
+.env \ No newline at end of file