fix: standardize project name to LogWhispererAI (no space)

- Replace all occurrences of 'LogWhisperer AI' with 'LogWhispererAI'
- Fix 47 instances across 30 files including:
  - Documentation (README, PRD, specs, docs)
  - Frontend components (Footer, Navbar, Hero, etc.)
  - Backend files (Dockerfile, server.js)
  - Workflow files (n8n, bash scripts)
  - Configuration files (AGENTS.md, LICENSE)

Ensures consistent branding across the entire codebase.
This commit is contained in:
Luca Sacchi Ricciardi
2026-04-03 17:07:35 +02:00
parent 8eb7dfb00e
commit 92217897ca
30 changed files with 47 additions and 47 deletions

View File

@@ -1,5 +1,5 @@
# Dockerfile for Fake Backend
# Development mock API server for LogWhisperer AI
# Development mock API server for LogWhispererAI
FROM node:20-alpine

View File

@@ -1,10 +1,10 @@
/**
* Fake Backend Server for LogWhisperer AI
* Fake Backend Server for LogWhispererAI
*
* Simulates AI analysis responses for frontend development
* without requiring real backend or OpenRouter API calls.
*
* @author LogWhisperer AI Team
* @author LogWhispererAI Team
* @version 1.0.0
*/
@@ -180,7 +180,7 @@ app.get('/health', (req, res) => {
*/
app.get('/', (req, res) => {
res.json({
name: 'LogWhisperer AI - Fake Backend',
name: 'LogWhispererAI - Fake Backend',
version: '1.0.0',
description: 'Mock API server for frontend development',
endpoints: {
@@ -206,7 +206,7 @@ app.use((err, req, res, next) => {
app.listen(PORT, () => {
console.log(`
╔══════════════════════════════════════════════════════════════╗
║ LogWhisperer AI - Fake Backend Server ║
║ LogWhispererAI - Fake Backend Server
║ ║
║ 🚀 Server running on http://localhost:${PORT}
║ 📖 Documentation: docs/tools_fake_backend.md ║