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:
@@ -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.",
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ import { ArtifactService } from './services/artifact';
|
||||
template: `
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>◆ Obsidian</h1>
|
||||
<h1>◆ Warehouse13</h1>
|
||||
<div class="header-info">
|
||||
<span class="badge">{{ deploymentMode }}</span>
|
||||
<span class="badge">{{ storageBackend }}</span>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
echo =========================================
|
||||
echo Obsidian - Quick Start
|
||||
echo Warehouse13 - Quick Start
|
||||
echo =========================================
|
||||
echo.
|
||||
|
||||
|
||||
@@ -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 ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
set -e
|
||||
|
||||
echo "========================================="
|
||||
echo "Obsidian - Quick Start"
|
||||
echo "Warehouse13 - Quick Start"
|
||||
echo "========================================="
|
||||
echo ""
|
||||
|
||||
|
||||
@@ -3,14 +3,14 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<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">
|
||||
<script src="https://unpkg.com/lucide@latest"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>◆ Obsidian</h1>
|
||||
<h1>◆ Warehouse13</h1>
|
||||
<div class="header-info">
|
||||
<span id="deployment-mode" class="badge"></span>
|
||||
<span id="storage-backend" class="badge"></span>
|
||||
|
||||
Reference in New Issue
Block a user