chore: update .gitignore and .dockerignore to match standards (refs #17)
This commit is contained in:
@@ -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
30
.gitignore
vendored
@@ -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/
|
||||||
|
|||||||
Reference in New Issue
Block a user