From a3a2cec9cf056fec31ebbfa34d972dd75a3a11dd Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Thu, 16 Oct 2025 09:46:01 -0500 Subject: [PATCH] Rebrand application from Obsidian to Warehouse13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update main app title in Angular frontend - Update FastAPI application title and API endpoints - Update static HTML index page - Update all quickstart scripts (bash, PowerShell, batch) - Update README files (main and frontend) - Maintain ◆ symbol in headers All references to "Obsidian" have been replaced with "Warehouse13" throughout the application. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 2 +- app/main.py | 6 +++--- frontend/README.md | 4 ++-- frontend/src/app/app.ts | 2 +- quickstart.bat | 2 +- quickstart.ps1 | 2 +- quickstart.sh | 2 +- static/index.html | 4 ++-- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 70a217c..3cf19be 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Obsidian +# Warehouse13 **Enterprise Test Artifact Storage** diff --git a/app/main.py b/app/main.py index b1e0034..6ac02e3 100644 --- a/app/main.py +++ b/app/main.py @@ -19,7 +19,7 @@ logger = logging.getLogger(__name__) # Create FastAPI app app = FastAPI( - title="Obsidian", + title="Warehouse13", description="Enterprise Test Artifact Storage - API for storing and querying test artifacts including CSV, JSON, binary files, and packet captures", version="1.0.0", docs_url="/docs", @@ -59,7 +59,7 @@ async def startup_event(): async def api_root(): """API root endpoint""" return { - "message": "Obsidian - Enterprise Test Artifact Storage", + "message": "Warehouse13 - Enterprise Test Artifact Storage", "version": "1.0.0", "docs": "/docs", "deployment_mode": settings.deployment_mode, @@ -75,7 +75,7 @@ async def ui_root(): return FileResponse(index_path) else: return { - "message": "Obsidian - Enterprise Test Artifact Storage", + "message": "Warehouse13 - Enterprise Test Artifact Storage", "version": "1.0.0", "docs": "/docs", "ui": "UI not found. Serving API only.", diff --git a/frontend/README.md b/frontend/README.md index ebf8bd1..769b37d 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,6 +1,6 @@ -# Obsidian Frontend - Angular Application +# Warehouse13 Frontend - Angular Application -Modern Angular application for the Obsidian Test Artifact Data Lake. +Modern Angular application for the Warehouse13 Test Artifact Data Lake. ## Features diff --git a/frontend/src/app/app.ts b/frontend/src/app/app.ts index eea6301..bd53617 100644 --- a/frontend/src/app/app.ts +++ b/frontend/src/app/app.ts @@ -11,7 +11,7 @@ import { ArtifactService } from './services/artifact'; template: `
-

◆ Obsidian

+

◆ Warehouse13

{{ deploymentMode }} {{ storageBackend }} diff --git a/quickstart.bat b/quickstart.bat index abdae8d..d0f8808 100644 --- a/quickstart.bat +++ b/quickstart.bat @@ -2,7 +2,7 @@ setlocal enabledelayedexpansion echo ========================================= -echo Obsidian - Quick Start +echo Warehouse13 - Quick Start echo ========================================= echo. diff --git a/quickstart.ps1 b/quickstart.ps1 index 490a2c5..920c584 100644 --- a/quickstart.ps1 +++ b/quickstart.ps1 @@ -1,7 +1,7 @@ # Test Artifact Data Lake - Quick Start (PowerShell) Write-Host "=========================================" -ForegroundColor Cyan -Write-Host "Obsidian - Quick Start" -ForegroundColor Cyan +Write-Host "Warehouse13 - Quick Start" -ForegroundColor Cyan Write-Host "=========================================" -ForegroundColor Cyan Write-Host "" diff --git a/quickstart.sh b/quickstart.sh index a0fed12..3bbafca 100755 --- a/quickstart.sh +++ b/quickstart.sh @@ -3,7 +3,7 @@ set -e echo "=========================================" -echo "Obsidian - Quick Start" +echo "Warehouse13 - Quick Start" echo "=========================================" echo "" diff --git a/static/index.html b/static/index.html index ce1c454..bedc1ca 100644 --- a/static/index.html +++ b/static/index.html @@ -3,14 +3,14 @@ - Obsidian - Test Artifact Data Lake + Warehouse13 - Test Artifact Data Lake
-

◆ Obsidian

+

◆ Warehouse13