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

@ -56,7 +56,7 @@ concurrency:
cancel-in-progress: false # Don't cancel in-progress deploys
env:
PROJECT_DIR: /Users/mana/projects/manacore-monorepo
PROJECT_DIR: /Users/mana/projects/mana-monorepo
COMPOSE_FILE: docker-compose.macmini.yml
ENV_FILE: .env.macmini
DEPLOY_NOTIFY_ROOM_ID: ${{ secrets.DEPLOY_NOTIFY_ROOM_ID }}

View file

@ -57,7 +57,7 @@ jobs:
mana-crawler: ${{ steps.changes.outputs.mana-crawler }}
mana-credits: ${{ steps.changes.outputs.mana-credits }}
mana-search: ${{ steps.changes.outputs.mana-search }}
manacore-web: ${{ steps.changes.outputs.manacore-web }}
mana-web: ${{ steps.changes.outputs.mana-web }}
chat-backend: ${{ steps.changes.outputs.chat-backend }}
chat-web: ${{ steps.changes.outputs.chat-web }}
todo-backend: ${{ steps.changes.outputs.todo-backend }}
@ -96,7 +96,7 @@ jobs:
echo "mana-crawler=true" >> $GITHUB_OUTPUT
echo "mana-credits=true" >> $GITHUB_OUTPUT
echo "mana-search=true" >> $GITHUB_OUTPUT
echo "manacore-web=true" >> $GITHUB_OUTPUT
echo "mana-web=true" >> $GITHUB_OUTPUT
echo "chat-backend=true" >> $GITHUB_OUTPUT
echo "chat-web=true" >> $GITHUB_OUTPUT
echo "todo-backend=true" >> $GITHUB_OUTPUT
@ -139,7 +139,7 @@ jobs:
echo "mana-crawler=true" >> $GITHUB_OUTPUT
echo "mana-credits=true" >> $GITHUB_OUTPUT
echo "mana-search=true" >> $GITHUB_OUTPUT
echo "manacore-web=true" >> $GITHUB_OUTPUT
echo "mana-web=true" >> $GITHUB_OUTPUT
echo "chat-backend=true" >> $GITHUB_OUTPUT
echo "chat-web=true" >> $GITHUB_OUTPUT
echo "todo-backend=true" >> $GITHUB_OUTPUT
@ -228,12 +228,12 @@ jobs:
fi
done
# manacore-web: apps/manacore/apps/web + shared packages
MANACORE_WEB_CHANGED=$(check_pattern "apps/manacore/apps/web/|apps/manacore/packages/")
# mana-web: apps/mana/apps/web + shared packages
MANACORE_WEB_CHANGED=$(check_pattern "apps/mana/apps/web/|apps/mana/packages/")
if [ "$COMMON_CHANGED" == "true" ] || [ "$SHARED_AUTH_CHANGED" == "true" ] || [ "$SHARED_UI_CHANGED" == "true" ] || [ "$SHARED_WEB_CHANGED" == "true" ] || [ "$MANACORE_WEB_CHANGED" == "true" ]; then
echo "manacore-web=true" >> $GITHUB_OUTPUT
echo "mana-web=true" >> $GITHUB_OUTPUT
else
echo "manacore-web=false" >> $GITHUB_OUTPUT
echo "mana-web=false" >> $GITHUB_OUTPUT
fi
# chat-backend: apps/chat/apps/backend + packages
@ -401,7 +401,7 @@ jobs:
echo "| mana-crawler | ${{ steps.changes.outputs.mana-crawler }} |" >> $GITHUB_STEP_SUMMARY
echo "| mana-credits | ${{ steps.changes.outputs.mana-credits }} |" >> $GITHUB_STEP_SUMMARY
echo "| mana-search | ${{ steps.changes.outputs.mana-search }} |" >> $GITHUB_STEP_SUMMARY
echo "| manacore-web | ${{ steps.changes.outputs.manacore-web }} |" >> $GITHUB_STEP_SUMMARY
echo "| mana-web | ${{ steps.changes.outputs.mana-web }} |" >> $GITHUB_STEP_SUMMARY
echo "| chat-backend | ${{ steps.changes.outputs.chat-backend }} |" >> $GITHUB_STEP_SUMMARY
echo "| chat-web | ${{ steps.changes.outputs.chat-web }} |" >> $GITHUB_STEP_SUMMARY
echo "| todo-backend | ${{ steps.changes.outputs.todo-backend }} |" >> $GITHUB_STEP_SUMMARY
@ -721,11 +721,11 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
build-manacore-web:
name: Build manacore-web
build-mana-web:
name: Build mana-web
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.manacore-web == 'true'
if: needs.detect-changes.outputs.mana-web == 'true'
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
@ -738,12 +738,12 @@ jobs:
- uses: docker/metadata-action@v5
id: meta
with:
images: ghcr.io/${{ github.repository_owner }}/manacore-web
images: ghcr.io/${{ github.repository_owner }}/mana-web
tags: type=raw,value=latest
- uses: docker/build-push-action@v5
with:
context: .
file: apps/manacore/apps/web/Dockerfile
file: apps/mana/apps/web/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}

View file

@ -47,9 +47,9 @@ jobs:
postgres:
image: postgres:16-alpine
env:
POSTGRES_USER: manacore
POSTGRES_USER: mana
POSTGRES_PASSWORD: testpassword
POSTGRES_DB: manacore
POSTGRES_DB: mana
options: >-
--health-cmd pg_isready
--health-interval 10s
@ -92,17 +92,17 @@ jobs:
- name: Setup test database
working-directory: services/mana-auth
env:
DATABASE_URL: postgresql://manacore:testpassword@localhost:5432/manacore
DATABASE_URL: postgresql://mana:testpassword@localhost:5432/mana
run: pnpm run db:migrate
- name: Run tests with coverage
working-directory: services/mana-auth
env:
DATABASE_URL: postgresql://manacore:testpassword@localhost:5432/manacore
DATABASE_URL: postgresql://mana:testpassword@localhost:5432/mana
REDIS_URL: redis://localhost:6379
NODE_ENV: test
JWT_ISSUER: manacore
JWT_AUDIENCE: manacore
JWT_ISSUER: mana
JWT_AUDIENCE: mana
run: |
if [ "${{ github.event.inputs.verbose }}" = "true" ]; then
pnpm run test:cov --verbose
@ -140,9 +140,9 @@ jobs:
postgres:
image: postgres:16-alpine
env:
POSTGRES_USER: manacore
POSTGRES_USER: mana
POSTGRES_PASSWORD: testpassword
POSTGRES_DB: manacore
POSTGRES_DB: mana
options: >-
--health-cmd pg_isready
--health-interval 10s
@ -185,16 +185,16 @@ jobs:
- name: Setup databases for integration tests
working-directory: services/mana-auth
env:
DATABASE_URL: postgresql://manacore:testpassword@localhost:5432/manacore
DATABASE_URL: postgresql://mana:testpassword@localhost:5432/mana
run: pnpm run db:migrate
- name: Run integration tests
env:
DATABASE_URL: postgresql://manacore:testpassword@localhost:5432/manacore
DATABASE_URL: postgresql://mana:testpassword@localhost:5432/mana
REDIS_URL: redis://localhost:6379
NODE_ENV: test
JWT_ISSUER: manacore
JWT_AUDIENCE: manacore
JWT_ISSUER: mana
JWT_AUDIENCE: mana
run: |
# Run auth integration tests
cd services/mana-auth
@ -278,7 +278,7 @@ jobs:
curl -X POST "$DISCORD_WEBHOOK_URL" \
-H 'Content-Type: application/json' \
-d "{
\"username\": \"ManaCore CI/CD\",
\"username\": \"Mana CI/CD\",
\"avatar_url\": \"https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png\",
\"embeds\": [{
\"title\": \"$TITLE\",
@ -312,7 +312,7 @@ jobs:
}
],
\"footer\": {
\"text\": \"ManaCore Monorepo\"
\"text\": \"Mana Monorepo\"
},
\"timestamp\": \"$(date -u +%Y-%m-%dT%H:%M:%SZ)\"
}]

View file

@ -17,7 +17,7 @@ jobs:
steps:
- name: Mirror to Forgejo via SSH
run: |
cd /Users/mana/projects/manacore-monorepo
cd /Users/mana/projects/mana-monorepo
# Stash any local changes so pull never fails
git stash --quiet 2>/dev/null || true
@ -25,5 +25,5 @@ jobs:
# Push to Forgejo via localhost SSH (runner is on the Mac Mini)
GIT_SSH_COMMAND='ssh -p 2222 -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no' \
git push ssh://git@localhost:2222/till/manacore-monorepo.git main 2>&1
git push ssh://git@localhost:2222/till/mana-monorepo.git main 2>&1
echo "Mirrored to Forgejo"