Rebrand application from Obsidian to Warehouse13

- 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 <noreply@anthropic.com>
This commit is contained in:
2025-10-16 09:46:01 -05:00
parent 2054181228
commit a3a2cec9cf
8 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
# Obsidian # Warehouse13
**Enterprise Test Artifact Storage** **Enterprise Test Artifact Storage**

View File

@@ -19,7 +19,7 @@ logger = logging.getLogger(__name__)
# Create FastAPI app # Create FastAPI app
app = FastAPI( 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", description="Enterprise Test Artifact Storage - API for storing and querying test artifacts including CSV, JSON, binary files, and packet captures",
version="1.0.0", version="1.0.0",
docs_url="/docs", docs_url="/docs",
@@ -59,7 +59,7 @@ async def startup_event():
async def api_root(): async def api_root():
"""API root endpoint""" """API root endpoint"""
return { return {
"message": "Obsidian - Enterprise Test Artifact Storage", "message": "Warehouse13 - Enterprise Test Artifact Storage",
"version": "1.0.0", "version": "1.0.0",
"docs": "/docs", "docs": "/docs",
"deployment_mode": settings.deployment_mode, "deployment_mode": settings.deployment_mode,
@@ -75,7 +75,7 @@ async def ui_root():
return FileResponse(index_path) return FileResponse(index_path)
else: else:
return { return {
"message": "Obsidian - Enterprise Test Artifact Storage", "message": "Warehouse13 - Enterprise Test Artifact Storage",
"version": "1.0.0", "version": "1.0.0",
"docs": "/docs", "docs": "/docs",
"ui": "UI not found. Serving API only.", "ui": "UI not found. Serving API only.",

View File

@@ -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 ## Features

View File

@@ -11,7 +11,7 @@ import { ArtifactService } from './services/artifact';
template: ` template: `
<div class="container"> <div class="container">
<header> <header>
<h1>◆ Obsidian</h1> <h1>◆ Warehouse13</h1>
<div class="header-info"> <div class="header-info">
<span class="badge">{{ deploymentMode }}</span> <span class="badge">{{ deploymentMode }}</span>
<span class="badge">{{ storageBackend }}</span> <span class="badge">{{ storageBackend }}</span>

View File

@@ -2,7 +2,7 @@
setlocal enabledelayedexpansion setlocal enabledelayedexpansion
echo ========================================= echo =========================================
echo Obsidian - Quick Start echo Warehouse13 - Quick Start
echo ========================================= echo =========================================
echo. echo.

View File

@@ -1,7 +1,7 @@
# Test Artifact Data Lake - Quick Start (PowerShell) # Test Artifact Data Lake - Quick Start (PowerShell)
Write-Host "=========================================" -ForegroundColor Cyan Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "Obsidian - Quick Start" -ForegroundColor Cyan Write-Host "Warehouse13 - Quick Start" -ForegroundColor Cyan
Write-Host "=========================================" -ForegroundColor Cyan Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "" Write-Host ""

View File

@@ -3,7 +3,7 @@
set -e set -e
echo "=========================================" echo "========================================="
echo "Obsidian - Quick Start" echo "Warehouse13 - Quick Start"
echo "=========================================" echo "========================================="
echo "" echo ""

View File

@@ -3,14 +3,14 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Obsidian - Test Artifact Data Lake</title> <title>Warehouse13 - Test Artifact Data Lake</title>
<link rel="stylesheet" href="/static/css/styles.css"> <link rel="stylesheet" href="/static/css/styles.css">
<script src="https://unpkg.com/lucide@latest"></script> <script src="https://unpkg.com/lucide@latest"></script>
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<header> <header>
<h1>Obsidian</h1> <h1>Warehouse13</h1>
<div class="header-info"> <div class="header-info">
<span id="deployment-mode" class="badge"></span> <span id="deployment-mode" class="badge"></span>
<span id="storage-backend" class="badge"></span> <span id="storage-backend" class="badge"></span>