From e44a6e175d235bf48ba02ca548bc9d94fee41bff Mon Sep 17 00:00:00 2001 From: enki Date: Sat, 3 May 2025 01:00:17 -0700 Subject: [PATCH] .gitignore update --- .gitignore | 71 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 62 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 87e37c7..ec0baab 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,75 @@ -# Ignore build output +# Build outputs /build/ +*.exe +*.exe~ +*.dll +*.so +*.dylib +/nostr-poster -# Ignore content and archive folders +# User content directories /content/ /archive/ -# Ignore config files except the sample +# Config files except samples /config/* !/config/config.sample.ymal - -# Ignore keys.json /keys.json +*.env +.env +# Database files +*.db +*.db-journal +*.sqlite +*.sqlite3 -# Ignore go build files +# Go specific +/pkg/ +/bin/ *.o *.a -*.so +/vendor/ +/Godeps/ +.go-version -# Ignore Go module cache -/pkg/ \ No newline at end of file +# Testing +*.test +*.out +/testdata/ + +# OS specific files +.DS_Store +Thumbs.db +desktop.ini + +# Editor directories and files +.idea/ +.vscode/ +*.sublime-workspace +*.sublime-project +*~ +.project +.classpath +.settings/ + +# Debug files +debug +__debug_bin +*.pprof +*.cpu +*.mem + +# Private keys and sensitive files +*.nsec +*.privkey + +# Logs +logs/ +*.log +npm-debug.log* + +# Temporary files +*.tmp +*.bak +*.swp \ No newline at end of file