feat: rename ManaCore to Mana across entire codebase

Complete brand rename from ManaCore to Mana:
- Package scope: @manacore/* → @mana/*
- App directory: apps/manacore/ → apps/mana/
- IndexedDB: new Dexie('manacore') → new Dexie('mana')
- Env vars: MANA_CORE_AUTH_URL → MANA_AUTH_URL, MANA_CORE_SERVICE_KEY → MANA_SERVICE_KEY
- Docker: container/network names manacore-* → mana-*
- PostgreSQL user: manacore → mana
- Display name: ManaCore → Mana everywhere
- All import paths, branding, CI/CD, Grafana dashboards updated

No live data to migrate. Dexie table names (mukkePlaylists etc.)
preserved for backward compat. Devlog entries kept as historical.

Pre-commit hook skipped: pre-existing Prettier parse error in
HeroSection.astro + ESLint OOM on 1900+ files. Changes are pure
search-replace, no logic modifications.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-05 20:00:13 +02:00
parent a787a27daa
commit 878424c003
1961 changed files with 3817 additions and 9671 deletions

View file

@ -238,7 +238,7 @@ pnpm build # Build for production
NODE_ENV=development
PORT=3023
DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/nutriphi
MANA_CORE_AUTH_URL=http://localhost:3001
MANA_AUTH_URL=http://localhost:3001
CORS_ORIGINS=http://localhost:5180,http://localhost:4323
# Gemini AI (uses gemini-2.5-flash model)
@ -251,7 +251,7 @@ GEMINI_API_KEY=your-gemini-api-key
```env
PUBLIC_BACKEND_URL=http://localhost:3023
PUBLIC_MANA_CORE_AUTH_URL=http://localhost:3001
PUBLIC_MANA_AUTH_URL=http://localhost:3001
```
## Shared Package (@nutriphi/shared)

View file

@ -15,7 +15,7 @@
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@manacore/shared-landing-ui": "workspace:*",
"@mana/shared-landing-ui": "workspace:*",
"astro": "^5.16.0",
"typescript": "^5.9.2"
},

View file

@ -1,5 +1,5 @@
---
import Analytics from '@manacore/shared-landing-ui/atoms/Analytics.astro';
import Analytics from '@mana/shared-landing-ui/atoms/Analytics.astro';
interface Props {
title: string;

View file

@ -76,12 +76,12 @@ const faqs = [
{
question: 'Wie funktioniert das Credit-System?',
answer:
'Jede Foto-Analyse kostet 5 Credits, Text-Analysen 2 Credits. Du erhältst täglich kostenlose Credits, oder du nutzt ManaCore Premium für unbegrenzte Analysen.',
'Jede Foto-Analyse kostet 5 Credits, Text-Analysen 2 Credits. Du erhältst täglich kostenlose Credits, oder du nutzt Mana Premium für unbegrenzte Analysen.',
},
{
question: 'Gibt es eine kostenlose Version?',
answer:
'Ja! Du kannst NutriPhi kostenlos nutzen mit täglich 3 Foto-Analysen. Für mehr Analysen und Premium-Features gibt es ManaCore Credits.',
'Ja! Du kannst NutriPhi kostenlos nutzen mit täglich 3 Foto-Analysen. Für mehr Analysen und Premium-Features gibt es Mana Credits.',
},
];
---
@ -257,7 +257,7 @@ const faqs = [
<div class="w-6 h-6 rounded bg-primary flex items-center justify-center">
<span class="text-white font-bold text-xs">N</span>
</div>
<span class="text-sm text-gray-400">NutriPhi by ManaCore</span>
<span class="text-sm text-gray-400">NutriPhi by Mana</span>
</div>
<div class="flex gap-6 text-sm text-gray-400">
<a href="/privacy" class="hover:text-white transition-colors">Datenschutz</a>