The chat-bot binary is built into ./bin/chat-bot via `go build -o bin/chat-bot ./cmd/chat-bot`. Keep it out of git — never commit build artifacts.
23 lines
No EOL
190 B
Text
23 lines
No EOL
190 B
Text
# Go
|
|
*.exe
|
|
*.test
|
|
*.out
|
|
*.prof
|
|
vendor/
|
|
coverage.out
|
|
coverage.html
|
|
/bin/
|
|
|
|
# SQLite (RAG index)
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
data/portfolio.db
|
|
|
|
# Editor / OS
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store |