From 14b30bdb6e46130c51be7e3d266dff441fed2175 Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Sat, 7 Mar 2026 11:04:18 +1100 Subject: [PATCH] Update App name --- CHANGELOG.md | 2 +- README.md | 2 +- agents.md | 4 ++-- backend/app/api/routes.py | 2 +- backend/app/main.py | 4 ++-- frontend/index.html | 2 +- frontend/src/App.tsx | 4 ++-- frontend/src/components/AppHeader.tsx | 5 +++-- justfile | 2 +- 9 files changed, 14 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d30de7..226cac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,7 +123,7 @@ ### Added -- Initial release of Hey Search metasearch engine +- Initial release of HeySearch metasearch engine - **Backend** (Python / FastAPI) - Async search orchestrator querying Brave, DuckDuckGo, Google, and Bing concurrently - Retry mechanism with exponential backoff for upstream engine failures diff --git a/README.md b/README.md index 3640a28..99a9b99 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Hey Search +# HeySearch A privacy-respecting [metasearch engine](https://en.wikipedia.org/wiki/Metasearch_engine) that aggregates results from multiple search engines. diff --git a/agents.md b/agents.md index b96ecb2..2845a7a 100644 --- a/agents.md +++ b/agents.md @@ -1,10 +1,10 @@ # Agents -This file describes the project structure and conventions for AI coding agents working on Hey Search. +This file describes the project structure and conventions for AI coding agents working on HeySearch. ## Project Overview -Hey Search is a privacy-respecting metasearch engine that aggregates results from multiple upstream search engines (Brave, DuckDuckGo, Google, Bing). It has a Python/FastAPI backend and a React/TypeScript frontend. +HeySearch is a privacy-respecting metasearch engine that aggregates results from multiple upstream search engines (Brave, DuckDuckGo, Google, Bing). It has a Python/FastAPI backend and a React/TypeScript frontend. ## Repository Structure diff --git a/backend/app/api/routes.py b/backend/app/api/routes.py index d88f5bc..9eeb3be 100644 --- a/backend/app/api/routes.py +++ b/backend/app/api/routes.py @@ -1,4 +1,4 @@ -"""API routes for Hey Search.""" +"""API routes for HeySearch.""" from __future__ import annotations diff --git a/backend/app/main.py b/backend/app/main.py index 6bb15e5..f5fce88 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -1,4 +1,4 @@ -"""Hey Search - A metasearch engine.""" +"""HeySearch - A metasearch engine.""" import json import os @@ -34,7 +34,7 @@ async def lifespan(application: FastAPI): app = FastAPI( - title="Hey Search", + title="HeySearch", description="A privacy-respecting metasearch engine. See endpoints below for usage with curl examples.", version="1.4.0", lifespan=lifespan, diff --git a/frontend/index.html b/frontend/index.html index d89aef0..23e5d09 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -7,7 +7,7 @@ - Hey Search + HeySearch
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8168d24..764f602 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -450,7 +450,7 @@ function App() { ? "bg-gradient-to-r from-white to-white/90" : "bg-gradient-to-r from-blue-600 to-purple-600" )}> - Hey Search + HeySearch

@@ -709,7 +709,7 @@ function App() { {/* Footer */}