From cb58b90083ff7ded9534b677790d7700c5d5e76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AC=E6=98=8E?= <83812544+Ed1s0nZ@users.noreply.github.com> Date: Tue, 18 Aug 2026 20:53:37 +0800 Subject: [PATCH] Update .gitignore --- .gitignore | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0f487f16..1290bde7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,30 +1,48 @@ # Runtime data data/ +chat_uploads/ *.db *.db-shm *.db-wal +*.db-journal *.sqlite *.sqlite3 # Local configuration and secrets config.yaml config.local.yaml +config.yaml.backup +*.backup .env .env.* +!.env.example *.pem *.key *.crt +# Upgrade / settings backups +.upgrade-backup/ + +# Eino runtime task board (under skills_dir) +skills/.eino/ + # Build outputs cyberstrike-ai +cyberstrike-ai.exe +*.test bin/ dist/ build/ +.build/ +target/ +.gradle/ coverage.out coverage.html # Logs and temporary files *.log +*.bak +*~ tmp/ temp/ @@ -38,7 +56,12 @@ __pycache__/ # Go vendor/ -# macOS / editors +# Node / browser extension +node_modules/ + +# macOS / Windows / editors .DS_Store +Thumbs.db +desktop.ini .idea/ .vscode/