Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
24604b2
Implement search-based data loader with keyword and semantic matching
mentatbot[bot] Jul 21, 2025
72cf7a7
Add dynamic search term configuration in visualization controls
mentatbot[bot] Jul 21, 2025
b7018ea
Fix code duplication and sync issues in search functionality
mentatbot[bot] Jul 21, 2025
e4e21e3
Add backend API server for content-based search
mentatbot[bot] Jul 22, 2025
298d513
Merge main branch with resolved conflicts
mentatbot[bot] Jul 22, 2025
fc079ad
Fix search data sources to appear in node features dropdown
mentatbot[bot] Jul 22, 2025
a340fd5
Add debug logging to diagnose search functionality issues
mentatbot[bot] Jul 22, 2025
3e457e9
Merge main branch with search functionality preserved
mentatbot[bot] Jul 24, 2025
689456a
Update frontend dependencies to fix React hook errors
mentatbot[bot] Jul 24, 2025
171bde0
Merge main branch - resolve import conflicts
mentatbot[bot] Jul 24, 2025
16d8c0c
Fix backend API connectivity with Vite proxy configuration
mentatbot[bot] Jul 24, 2025
dc13e49
Merge main branch with resolved conflicts
mentatbot[bot] Jul 25, 2025
6ebd843
Add detailed logging to backend health check
mentatbot[bot] Jul 25, 2025
15162c9
Increase backend request size limit to fix 403 errors
mentatbot[bot] Jul 25, 2025
35cb3cb
Add detailed logging to backend search endpoint
mentatbot[bot] Jul 25, 2025
0f3a510
Fix Vite proxy and apiClient URLs
mentatbot[bot] Jul 25, 2025
c3a1b26
Fix backend endpoints to match Vite proxy rewrite
mentatbot[bot] Jul 25, 2025
ec15df4
feat: Add preview script for backend server
mentatbot[bot] Jul 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .mentat/preview/backend.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
echo "Starting backend server with clean install..."
cd backend
rm -rf node_modules package-lock.json
npm install
node server.js
1 change: 1 addition & 0 deletions backend/node_modules/.bin/mime

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions backend/node_modules/.bin/mkdirp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions backend/node_modules/.bin/nodemon

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions backend/node_modules/.bin/nodetouch

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions backend/node_modules/.bin/semver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading