chore: update .gitignore and .dockerignore to match standards (refs #17)

This commit is contained in:
clawbot
2026-02-26 06:08:31 -08:00
parent 1e5811edda
commit fc91dc37c0
2 changed files with 30 additions and 5 deletions

View File

@@ -1,8 +1,9 @@
.git
node_modules
.DS_Store
bin/ bin/
chatd
data.db data.db
.env .env
.git
*.test *.test
*.out *.out
debug.log debug.log

30
.gitignore vendored
View File

@@ -1,7 +1,28 @@
# OS
.DS_Store
Thumbs.db
# Editors
*.swp
*.swo
*~
*.bak
.idea/
.vscode/
*.sublime-*
# Node
node_modules/
# Environment / secrets
.env
.env.*
*.pem
*.key
# Build artifacts
/chatd /chatd
/bin/ /bin/
data.db
.env
*.exe *.exe
*.dll *.dll
*.so *.so
@@ -9,6 +30,9 @@ data.db
*.test *.test
*.out *.out
vendor/ vendor/
# Project
data.db
debug.log debug.log
web/node_modules/
chat-cli chat-cli
web/node_modules/