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

@ -17,7 +17,7 @@
<script lang="ts">
import { onMount } from 'svelte';
import type { Snippet } from 'svelte';
import { hasAppAccess, ACCESS_TIER_LABELS, type AccessTier } from '@manacore/shared-branding';
import { hasAppAccess, ACCESS_TIER_LABELS, type AccessTier } from '@mana/shared-branding';
/**
* Minimal interface that all app auth stores must satisfy.

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { CloudArrowUp, ArrowsClockwise, Lock, Sparkle, Info, X } from '@manacore/shared-icons';
import { CloudArrowUp, ArrowsClockwise, Lock, Sparkle, Info, X } from '@mana/shared-icons';
import type { AuthGateTranslations, AuthGateAction } from '../types';
const defaultTranslationsDE: Record<AuthGateAction, { title: string; description: string }> = {

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { Eye, EyeSlash } from '@manacore/shared-icons';
import { Eye, EyeSlash } from '@mana/shared-icons';
import PasswordStrength from './PasswordStrength.svelte';
interface Props {

View file

@ -1,6 +1,6 @@
<script lang="ts">
import { onMount } from 'svelte';
import { UserPlus, X, ArrowRight } from '@manacore/shared-icons';
import { UserPlus, X, ArrowRight } from '@mana/shared-icons';
import { startGuestSession, shouldShowGuestNudge, dismissGuestNudge } from '../utils/guestNudge';
interface Props {

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { getManaApp, type AppIconId } from '@manacore/shared-branding';
import { getManaApp, type AppIconId } from '@mana/shared-branding';
import {
X,
SignIn,
@ -10,7 +10,7 @@
ShieldCheck,
Sparkle,
ArrowSquareOut,
} from '@manacore/shared-icons';
} from '@mana/shared-icons';
import { markGuestWelcomeSeen } from '../utils/guestWelcome';
import type { GuestWelcomeTranslations } from '../types';
@ -40,7 +40,7 @@
/** Default features per app (German) */
const defaultFeaturesDE: Record<string, string[]> = {
manacore: ['Alle deine Apps an einem Ort', 'Quelloffen & unabhängig', 'Privat by Design'],
mana: ['Alle deine Apps an einem Ort', 'Quelloffen & unabhängig', 'Privat by Design'],
contacts: ['Alle Kontakte an einem Ort', 'Quelloffen & unabhängig', 'Privat by Design'],
chat: ['Dein persönlicher KI-Assistent', 'Quelloffen & unabhängig', 'Privat by Design'],
todo: ['Organisiere deinen Alltag', 'Quelloffen & unabhängig', 'Privat by Design'],
@ -73,7 +73,7 @@
/** Default features per app (English) */
const defaultFeaturesEN: Record<string, string[]> = {
manacore: ['All your apps in one place', 'Open-source & independent', 'Private by design'],
mana: ['All your apps in one place', 'Open-source & independent', 'Private by design'],
contacts: ['All your contacts in one place', 'Open-source & independent', 'Private by design'],
chat: ['Your personal AI assistant', 'Open-source & independent', 'Private by design'],
todo: ['Organize your day', 'Open-source & independent', 'Private by design'],
@ -329,7 +329,7 @@
<!-- Learn more -->
<a
href="https://manacore-landing.pages.dev"
href="https://mana-landing.pages.dev"
target="_blank"
rel="noopener noreferrer"
class="learn-more-link"

View file

@ -1,7 +1,7 @@
<script lang="ts">
import { onMount } from 'svelte';
import { onSessionExpired, isSessionExpired, resetSessionExpired } from '@manacore/shared-auth';
import { Warning, X, SignOut } from '@manacore/shared-icons';
import { onSessionExpired, isSessionExpired, resetSessionExpired } from '@mana/shared-auth';
import { Warning, X, SignOut } from '@mana/shared-icons';
interface Props {
/** Login page URL. Defaults to '/login'. */